Exemplo n.º 1
0
 public void ShowProperties(IEnumerable <object> selection)
 {
     try
     {
         PropertyGrid.Show(selection, CurrentDrawing.ActionManager);
     }
     catch (Exception ex)
     {
         CurrentDrawing.RaiseError(this, ex);
     }
 }
Exemplo n.º 2
0
 public virtual void ShowProperties(object selection)
 {
     try
     {
         PropertyGrid.Show(selection, CurrentDrawing.ActionManager);
     }
     catch (Exception ex)
     {
         CurrentDrawing.RaiseError(this, ex);
     }
 }