Beispiel #1
0
 private void SettingsBackColor_Click(object sender, RoutedEventArgs e)
 {
     Gui.SettingsBackColor();
 }
Beispiel #2
0
 private void RibbonButtonNew_Click(object sender, RoutedEventArgs e)
 {
     Gui.newdocument();
 }
Beispiel #3
0
 private void RibbonButtonOpen_Click(object sender, RoutedEventArgs e)
 {
     Gui.newdocumentFile();
 }
Beispiel #4
0
 private void EditWeb_Click(object sender, RoutedEventArgs e)
 {
     Gui.EditWeb();
 }
Beispiel #5
0
 private void ViewHTML_Click(object sender, RoutedEventArgs e)
 {
     Gui.ViewHTML();
 }
Beispiel #6
0
 private void RibbonComboboxFonts_SelectionChanged(object sender, SelectionChangedEventArgs e)
 {
     Gui.RibbonComboboxFonts(RibbonComboboxFonts);
 }
Beispiel #7
0
 private void RibbonComboboxFormat_SelectionChanged(object sender, SelectionChangedEventArgs e)
 {
     Gui.RibbonComboboxFormat(RibbonComboboxFormat);
 }
Beispiel #8
0
 private void RibbonButtonSave_Click(object sender, RoutedEventArgs e)
 {
     Gui.RibbonButtonSave();
 }
Beispiel #9
0
 private void SettingsAddImage_Click(object sender, RoutedEventArgs e)
 {
     Gui.SettingsAddImage();
 }
Beispiel #10
0
 private void SettingsAddLink_Click(object sender, RoutedEventArgs e)
 {
     Gui.SettingsAddLink();
 }
Beispiel #11
0
 public static void RibbonComboboxFontSizeInitialisation()
 {
     webeditor.RibbonComboboxFontHeight.ItemsSource = Gui.RibbonComboboxFontSizeInitialisation();
     webeditor.RibbonComboboxFontHeight.Text        = "3";
 }
Beispiel #12
0
 public static void RibbonComboboxFormatInitionalisation()
 {
     webeditor.RibbonComboboxFormat.ItemsSource   = Gui.RibbonComboboxFormatInitionalisation();
     webeditor.RibbonComboboxFormat.SelectedIndex = 0;
 }