예제 #1
0
파일: MainForm.cs 프로젝트: Ytrog/RssBandit
 private void cmbMenuCommands_SelectedIndexChanged(object sender, EventArgs e)
 {
     if (_handler.IsDefined(SelectedMenuCommand))
     {
         this.cmbMenuShortcutValues.SelectedItem = _handler.GetShortcut(SelectedMenuCommand).ToString();
     }
     else
     {
         this.cmbMenuShortcutValues.SelectedIndex = 0;
     }
     this.lblCurrentMenuShortcut.Text = "\"" + SelectedMenuCommand + "\" is set to \"" + this.SelectedMenuShortcut + "\"";
 }