private void RibbonComboboxFonts_SelectionChanged(object sender, SelectionChangedEventArgs e)
 {
     Gui.RibbonComboboxFonts(RibbonComboboxFonts);
 }
 private void RibbonComboboxFormat_SelectionChanged(object sender, SelectionChangedEventArgs e)
 {
     Gui.RibbonComboboxFormat(RibbonComboboxFormat);
 }
 private void RibbonButtonSave_Click(object sender, RoutedEventArgs e)
 {
     Gui.RibbonButtonSave();
 }
 private void RibbonButtonOpen_Click(object sender, RoutedEventArgs e)
 {
     Gui.newdocumentFile();
 }
 private void RibbonButtonNew_Click(object sender, RoutedEventArgs e)
 {
     Gui.newdocument();
 }
Example #6
0
 public static void RibbonComboboxFontSizeInitialisation()
 {
     webeditor.RibbonComboboxFontHeight.ItemsSource = Gui.RibbonComboboxFontSizeInitialisation();
     webeditor.RibbonComboboxFontHeight.Text        = "3";
 }
Example #7
0
 public static void RibbonComboboxFormatInitionalisation()
 {
     webeditor.RibbonComboboxFormat.ItemsSource   = Gui.RibbonComboboxFormatInitionalisation();
     webeditor.RibbonComboboxFormat.SelectedIndex = 0;
 }