Exemplo n.º 1
0
 /// <summary>
 /// Инициализировать новый график
 /// </summary>
 /// <returns>Если график создан и инициализирован то график, в противном случае null</returns>
 public Graphic InstanceGraphic()
 {
     try
     {
         if (panel != null)
         {
             Graphic graphic = panel.InstanceGraphic();
             if (graphic != null)
             {
                 return(graphic);
             }
         }
     }
     catch { }
     return(null);
 }