public MainWindow()
        {
            InitializeComponent();

            //Starts a window for the Bus Control
            BusControl newMDIChild = new BusControl();
            newMDIChild.MdiParent = this;
            newMDIChild.Show();

            //BusMonitorCompact bmc = new BusMonitorCompact();
            //bmc.ShowDialog();

            //Checks to see if the guided bus control should be started
            if (ConfigFiles.Settings1.Default.skipGuidedBusControl == false)
            {
                Windows.GuidedBusControl newMDIChild2 = new Windows.GuidedBusControl();
                newMDIChild2.MdiParent = this;
                newMDIChild2.Show();
            }
        }
Exemple #2
0
        public MainWindow()
        {
            InitializeComponent();

            //Starts a window for the Bus Control
            BusControl newMDIChild = new BusControl();

            newMDIChild.MdiParent = this;
            newMDIChild.Show();

            //BusMonitorCompact bmc = new BusMonitorCompact();
            //bmc.ShowDialog();

            //Checks to see if the guided bus control should be started
            if (ConfigFiles.Settings1.Default.skipGuidedBusControl == false)
            {
                Windows.GuidedBusControl newMDIChild2 = new Windows.GuidedBusControl();
                newMDIChild2.MdiParent = this;
                newMDIChild2.Show();
            }
        }
 private void toolStripButtonGuidedBusControl_Click(object sender, EventArgs e)
 {
     Windows.GuidedBusControl newMDIChild = new Windows.GuidedBusControl();
     newMDIChild.MdiParent = this;
     newMDIChild.Show();
 }
 private void guidedBusControlToolStripMenuItem_Click(object sender, EventArgs e)
 {
     Windows.GuidedBusControl newMDIChild = new Windows.GuidedBusControl();
     newMDIChild.MdiParent = this;
     newMDIChild.Show();
 }
Exemple #5
0
 private void toolStripButtonGuidedBusControl_Click(object sender, EventArgs e)
 {
     Windows.GuidedBusControl newMDIChild = new Windows.GuidedBusControl();
     newMDIChild.MdiParent = this;
     newMDIChild.Show();
 }
Exemple #6
0
 private void guidedBusControlToolStripMenuItem_Click(object sender, EventArgs e)
 {
     Windows.GuidedBusControl newMDIChild = new Windows.GuidedBusControl();
     newMDIChild.MdiParent = this;
     newMDIChild.Show();
 }