mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
连接点可以添加文字
This commit is contained in:
@@ -188,7 +188,20 @@ namespace AIStudio.Wpf.DiagramDesigner
|
||||
}
|
||||
}
|
||||
|
||||
public bool ShowRotate { get; set; } = true;
|
||||
private bool _showRotate = false;
|
||||
[Browsable(true)]
|
||||
public bool ShowRotate
|
||||
{
|
||||
get
|
||||
{
|
||||
return _showRotate;
|
||||
}
|
||||
set
|
||||
{
|
||||
SetProperty(ref _showRotate, value);
|
||||
}
|
||||
}
|
||||
|
||||
public bool ShowArrow { get; set; } = true;
|
||||
|
||||
private double _left;
|
||||
|
||||
Reference in New Issue
Block a user