private void CommandValueChangedHandler(AbstractCommand command) { #if DEBUG Console.WriteLine("CommandValueChanged"); #endif var item = listGestureIntents.SelectedItems[0]; item.SubItems[2].Text = command.Description(); }
private void HotcornerComandValueChangedHandler(AbstractCommand cmd) { var selectedRadioBtn = (from btn in _hotCornerRadioBtns where btn.Checked select btn).Single(); selectedRadioBtn.Text = cmd.Description(); }