示例#1
0
        private void _importChannelsButton_Click(object sender, EventArgs e)
        {
            ImportChannelsWizard wizardForm = new ImportChannelsWizard((ChannelType)_channelTypeComboBox.SelectedIndex);

            if (wizardForm.ShowDialog(this) == DialogResult.OK)
            {
                LoadChannels();
            }
        }
示例#2
0
 private void _importChannelsButton_Click(object sender, EventArgs e)
 {
     ImportChannelsWizard wizardForm = new ImportChannelsWizard((ChannelType)_channelTypeComboBox.SelectedIndex);
     if (wizardForm.ShowDialog(this) == DialogResult.OK)
     {
         LoadChannels();
     }
 }