2019-11-29 22:09:22 +00:00
|
|
|
|
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
|
|
|
|
|
{
|
2019-11-29 22:09:22 +00:00
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|