Ejemplo n.º 1
0
 private void SelectArea()
 {
     if (!CurrentArea.IsEmpty && !surface.Config.IsFixedSize)
     {
         ResizeManager.Show();
     }
 }
Ejemplo n.º 2
0
 private void SelectShape()
 {
     if (!CurrentRectangle.IsEmpty && !Config.IsFixedSize)
     {
         ResizeManager.Show();
     }
 }
Ejemplo n.º 3
0
        private void SelectShape()
        {
            BaseShape shape = CurrentShape;

            if (shape != null && !CurrentRectangle.IsEmpty && shape.NodeType != NodeType.Point)
            {
                ResizeManager.Show();
            }
        }