Exemplo n.º 1
0
 private void saveToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (PrivateSeries != null)
     {
         StaticExtensionDataPerformerUI.Save(PrivateSeries, this);
     }
 }
Exemplo n.º 2
0
 private void copyToClipboardToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (PrivateSeries != null)
     {
         StaticExtensionDataPerformerUI.CopyToClipboard(PrivateSeries);
     }
 }
Exemplo n.º 3
0
        private void DrawBitmap()
        {
            Graphics g = Graphics.FromImage(bmp);

            if (table != null)
            {
                StaticExtensionDataPerformerUI.Draw(table, g, 0, 0, Width, Height);
            }
        }
Exemplo n.º 4
0
 internal void Save()
 {
     try
     {
         StaticExtensionDataPerformerUI.Save(series, this);
     }
     catch (Exception ex)
     {
         ex.ShowError(10);
         WindowsExtensions.ControlExtensions.ShowMessageBoxModal(ex.Message);
     }
 }
Exemplo n.º 5
0
 internal void Save()
 {
     try
     {
         DataPerformer.Series s = nc as DataPerformer.Series;
         StaticExtensionDataPerformerUI.Save(s, this);
     }
     catch (Exception e)
     {
         e.ShowError(10);
         WindowsExtensions.ControlExtensions.ShowMessageBoxModal(e.Message);
     }
 }
Exemplo n.º 6
0
 internal void Open()
 {
     try
     {
         StaticExtensionDataPerformerUI.Load(this, series);
         Show();
     }
     catch (Exception ex)
     {
         ex.ShowError(10);
         WindowsExtensions.ControlExtensions.ShowMessageBoxModal(ex.Message);
     }
 }