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

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

@@ -18,27 +18,26 @@ namespace ShrlAlgoToolkit.RevitAddins.RvMEP;
public partial class ClashResolveViewModel : ObservableObject
{
[ObservableProperty]
private AdjustDirection adjustDirection;
public partial AdjustDirection AdjustDirection { get; set; }
[ObservableProperty]
private AdjustType adjustType = AdjustType.OneSide;
public partial AdjustType AdjustType { get; set; } = AdjustType.OneSide;
/// <summary>
/// 正在执行命令
/// </summary>
[ObservableProperty]
[NotifyCanExecuteChangedFor(nameof(RevitAddins.RvMEP.ClashResolveViewModel.ResolveCommand))]
private bool canRunning = true;
public partial bool CanRunning { get; set; } = true;
[ObservableProperty]
private double angle = 90.0;
public partial double Angle { get; set; } = 90.0;
[ObservableProperty]
private double offset = 800;
public partial double Offset { get; set; } = 800;
[ObservableProperty]
private LocationType locationType = LocationType.Manual;
public partial LocationType LocationType { get; set; } = LocationType.Manual;
public ActionEventHandler ActionEventHandler { get; } = new();
partial void OnLocationTypeChanged(LocationType value)
{