命名优化,达芬奇字体修改工具
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user