Пример #1
0
 private void tracesToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (Traces == null)
     {
         Traces = new Traces(this);
         Traces.Show();
     }
     else
     {
         Traces.BringToFront();
     }
 }
Пример #2
0
        public TraceEditor(Traces Parent, Trace Trace)
        {
            InitializeComponent();

            this.Parent = Parent;
            Layout      = new LayoutEngine(this)
            {
                ClearOnProcess = true,
                Padding        = new Padding(6),
                Margin         = new Padding(6)
            };
            LoadTrace(Trace);
        }
Пример #3
0
 public void ChildClosing(Form Child)
 {
     if (Child is Traces)
     {
         Traces = null;
     }
     else if (Child is Plots)
     {
         Plots = null;
     }
     else if (Child is NodeEditor)
     {
         NodeEditor = null;
     }
     else if (Child is StreamEditor)
     {
         StreamEditor = null;
     }
     else if (Child is LinkEditor)
     {
         LinkEditor = null;
     }
     else if (Child is DomainEditor)
     {
         DomainEditor = null;
     }
     else if (Child is NetworkPropertiesEditor)
     {
         NetworkPropertiesEditor = null;
     }
     else if (Child is DisplayPropertiesEditor)
     {
         DisplayPropertiesEditor = null;
     }
     else if (Child is Console)
     {
         Console = null;
     }
 }