mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
mind 有点样子了
This commit is contained in:
@@ -304,6 +304,32 @@ namespace AIStudio.Wpf.DiagramDesigner
|
||||
|
||||
public bool ShowArrow { get; set; } = true;
|
||||
|
||||
private bool enabledForConnection = true;
|
||||
public bool EnabledForConnection
|
||||
{
|
||||
get
|
||||
{
|
||||
return enabledForConnection;
|
||||
}
|
||||
set
|
||||
{
|
||||
SetProperty(ref enabledForConnection, value);
|
||||
}
|
||||
}
|
||||
|
||||
private bool enabledForSelection = true;
|
||||
public bool EnabledForSelection
|
||||
{
|
||||
get
|
||||
{
|
||||
return enabledForSelection;
|
||||
}
|
||||
set
|
||||
{
|
||||
SetProperty(ref enabledForSelection, value);
|
||||
}
|
||||
}
|
||||
|
||||
private double _left;
|
||||
[CanDo]
|
||||
public double Left
|
||||
|
||||
Reference in New Issue
Block a user