Example #1
0
 private void on_font_change(object Sender, FontEventArgs args)
 {
     comboBox.Entry.Text = args.Font;
     comboBox.Entry.ModifyFont(Pango.FontDescription.FromString(args.Font));
     if (FontChange != null)
     {
         FontChange(this, args);
     }
 }
 private void on_font_change( object Sender, FontEventArgs args )
 {
     comboBox.Entry.Text = args.Font;
     comboBox.Entry.ModifyFont( Pango.FontDescription.FromString( args.Font ) );
     if( FontChange != null ) FontChange( this, args );
 }