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

            selectedRadioBtn.Text = cmd.Description();
        }