wabbajack/Wabbajack/Views/Common/LogCpuView.xaml.cs

25 lines
718 B
C#
Raw Normal View History

using System.Windows;
using System.Windows.Controls;
2019-11-07 05:33:08 +00:00
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)));
2019-11-07 05:33:08 +00:00
public LogCpuView()
{
InitializeComponent();
}
}
}