命名优化,达芬奇字体修改工具

This commit is contained in:
GG Z
2025-10-04 08:52:23 +08:00
parent 0d0afbc78e
commit 4722a4c881
121 changed files with 1801 additions and 1368 deletions

View File

@@ -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()
{