Exemplo n.º 1
0
        private void ToolStripMenuItemDevManager_Click(object sender, EventArgs e)
        {
            if (deviceListWindow != null)
            {
                return;
            }
            deviceListWindow              = new SavedDeviceListWindow();
            deviceListWindow.FormClosing += SavedDeviceListWindow_FormClosing;
            deviceListWindow.DevList      = deviceListFromConfig;

            var thread = new Thread(new ParameterizedThreadStart(param => { deviceListWindow.ShowDialog(); }));

            thread.SetApartmentState(ApartmentState.STA);
            thread.Start();
        }
Exemplo n.º 2
0
 private void SavedDeviceListWindow_FormClosing(object sender, FormClosingEventArgs e)
 {
     deviceListWindow = null;
 }