命名优化,达芬奇字体修改工具
This commit is contained in:
@@ -5,15 +5,16 @@ namespace ShrlAlgoToolkit.RevitAddins.Windows
|
||||
partial class ProgressMonitorViewModel : ObservableObject
|
||||
{
|
||||
[ObservableProperty]
|
||||
public int maxValue = 100;
|
||||
public partial int MaxValue { get; set; } = 100;
|
||||
|
||||
[ObservableProperty]
|
||||
private int currentValue = 0;
|
||||
public partial int CurrentValue { get; set; } = 0;
|
||||
|
||||
[ObservableProperty]
|
||||
private string currentContext = string.Empty;
|
||||
public partial string CurrentContext { get; set; } = string.Empty;
|
||||
|
||||
[ObservableProperty]
|
||||
private string title = "处理任务";
|
||||
public partial string Title { get; set; } = "处理任务";
|
||||
|
||||
public void NotifyUI()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user