wabbajack/Wabbajack/Views/Common/LogCpuView.xaml.cs
2019-11-29 16:46:23 -06:00

25 lines
718 B
C#

using System.Windows;
using System.Windows.Controls;
namespace Wabbajack
{
/// <summary>
/// Interaction logic for LogCpuView.xaml
/// </summary>
public partial class LogCpuView : UserControl
{
public double ProgressPercent
{
get => (double)GetValue(ProgressPercentProperty);
set => SetValue(ProgressPercentProperty, value);
}
public static readonly DependencyProperty ProgressPercentProperty = DependencyProperty.Register(nameof(ProgressPercent), typeof(double), typeof(LogCpuView),
new FrameworkPropertyMetadata(default(double)));
public LogCpuView()
{
InitializeComponent();
}
}
}