Пример #1
0
 private void c1SplitButtonSpell_DropDownItemClicked(object sender, DropDownItemClickedEventArgs e)
 {
     if (e.ClickedItem.Items.Count == 0)
     {
         MessageBox.Show(this, string.Format("Checking the document with the {0} dictionary.", e.ClickedItem.Text));
     }
 }
Пример #2
0
 private void csbFocusRect_DropDownItemClicked(object sender, DropDownItemClickedEventArgs e)
 {
     if (UpdateDisabled)
     {
         return;
     }
     ((C1SplitButton)sender).Text = e.ClickedItem.Text;
     _flexGridOptions.FocusRect   = (FocusRectEnum)e.ClickedItem.Tag;
     UpdateControls();
 }