示例#1
0
 public bool SelectRail(FillerRailSelectPropertyPanel selectPanel, Func <Event, bool> afterAction)
 {
     if (Tool.Mode == FillerRailToolMode && selectPanel == FillerRailToolMode.SelectPanel)
     {
         Tool.SetDefaultMode();
         return(true);
     }
     else
     {
         Tool.SetMode(FillerRailToolMode);
         FillerRailToolMode.Contour          = EditObject.Contour;
         FillerRailToolMode.SelectPanel      = selectPanel;
         FillerRailToolMode.AfterSelectPanel = afterAction;
         selectPanel.Focus();
         return(false);
     }
 }
示例#2
0
 public void LeaveRail(FillerRailSelectPropertyPanel selectPanel) => HoverRailPanel = null;
示例#3
0
 public bool SelectRail(FillerRailSelectPropertyPanel selectPanel) => SelectRail(selectPanel, null);
示例#4
0
 public void HoverRail(FillerRailSelectPropertyPanel selectPanel) => HoverRailPanel = selectPanel;