Example #1
0
 public ColorFontDialog()
 {
     this.selectedFont = null; // Default
     InitializeComponent();
 }
Example #2
0
 private void btnOk_Click(object sender, RoutedEventArgs e)
 {
     this.Font         = this.ColorFontChooser.SelectedFont;
     this.DialogResult = true;
 }
 public ColorFontFamilyDialog()
 {
     this.selectedFont = null; // Default
     InitializeComponent();
     this.Loaded += Window_Loaded_1;
 }