Beispiel #1
0
    //private ICaptureDevice device;

    public void ShowSelectDeviceWindow()
    {
        deviceListForm = new DeviceListForm();
        deviceListForm.Show();
        deviceListForm.OnItemSelected += deviceListForm_OnItemSelected;
    }
Beispiel #2
0
        private void btnDeviceList_Click(object sender, EventArgs e)
        {
            DeviceListForm df = new DeviceListForm();

            df.ShowDialog();
        }
Beispiel #3
0
        private void Button_Click(object sender, RoutedEventArgs e)
        {
            DeviceListForm deviceList = new DeviceListForm();

            deviceList.ShowDialog();
        }