Exemplo n.º 1
0
 private void ChannelUpdateButton_Click(object sender, EventArgs e)
 {
     if (selected_channel_ == null)
     {
         return;
     }
     selected_channel_.CallSign = CallsignEdit.TextValue;
     UserChannelsListBox.Refresh();
 }
Exemplo n.º 2
0
        private void PopulateUserChannelsListBox()
        {
            UserChannelsListBox.Items.Clear();
            if (selected_lineup_ == null)
            {
                return;
            }

            UserChannelsListBox.Items.AddRange(ChannelEditing.GetUserAddedChannelsForLineup(selected_lineup_).ToArray());
            UserChannelsListBox.Refresh();
        }