mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
Mind 出发
This commit is contained in:
@@ -199,6 +199,9 @@ namespace AIStudio.Wpf.DiagramDesigner
|
||||
{
|
||||
menuOptions.Clear();
|
||||
var orientation = new CinchMenuItem("方向");
|
||||
var none = new CinchMenuItem("无");
|
||||
none.Command = MenuItemCommand;
|
||||
none.CommandParameter = ConnectorOrientation.None;
|
||||
var top = new CinchMenuItem("上");
|
||||
top.Command = MenuItemCommand;
|
||||
top.CommandParameter = ConnectorOrientation.Top;
|
||||
@@ -211,6 +214,7 @@ namespace AIStudio.Wpf.DiagramDesigner
|
||||
var right = new CinchMenuItem("右");
|
||||
right.Command = MenuItemCommand;
|
||||
right.CommandParameter = ConnectorOrientation.Right;
|
||||
orientation.Children.Add(none);
|
||||
orientation.Children.Add(top);
|
||||
orientation.Children.Add(bottom);
|
||||
orientation.Children.Add(left);
|
||||
|
||||
Reference in New Issue
Block a user