public MainForm() { InitializeComponent(); katopsi = FxMatrixF.Load("Katopsi.jpg", FxMaths.Matrix.ColorSpace.Grayscale); // init the console UIConsole = new ConsoleOutput(); UIConsole.Show(dockPanel1, DockState.DockBottomAutoHide); consoleOutputToolStripMenuItem.Checked = true; // init the people over view UIPeopleOverview = new PeopleOverview(katopsi); UIPeopleOverview.Show(dockPanel1, DockState.Document); peopleOverviewToolStripMenuItem.Checked = true; // Init Serial debugiing UISerialInput = new SerialInput(); UISerialInput.Show(dockPanel1, DockState.Document); // Init serial Capture menu UISerialCapture = new SerialCapture(); UISerialCapture.Show(dockPanel1, DockState.Document); }
private void peopleOverviewToolStripMenuItem_Click(object sender, EventArgs e) { if (peopleOverviewToolStripMenuItem.Checked) { UIPeopleOverview.Hide(); } else { if (UIPeopleOverview == null) UIPeopleOverview = new PeopleOverview(); // add the viewport to the dock UIPeopleOverview.Show(dockPanel1, DockState.Document); } peopleOverviewToolStripMenuItem.Checked = !peopleOverviewToolStripMenuItem.Checked; }