mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-26 20:26:00 +08:00
25 lines
682 B
C#
25 lines
682 B
C#
using System.Windows;
|
|
|
|
namespace BililiveRecorder.WPF.Controls
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for AutoFixProgressDialog.xaml
|
|
/// </summary>
|
|
public partial class AutoFixProgressDialog
|
|
{
|
|
public AutoFixProgressDialog()
|
|
{
|
|
this.InitializeComponent();
|
|
}
|
|
|
|
public static readonly DependencyProperty ProgressProperty =
|
|
DependencyProperty.Register(nameof(Progress), typeof(int), typeof(AutoFixProgressDialog), new PropertyMetadata(0));
|
|
|
|
public int Progress
|
|
{
|
|
get => (int)this.GetValue(ProgressProperty);
|
|
set => this.SetValue(ProgressProperty, value);
|
|
}
|
|
}
|
|
}
|