[Gtk-sharp-list] Re: Gtk.TextView.ModifyFont Questions

Ecmel Ercan ecmel@ercansoy.com
Thu, 22 Jan 2004 20:48:18 +0200


Hello,

The following may help:

FontSelectionDialog dialog = new FontSelectionDialog ("Select Font");
dialog.Run ();

Pango.FontDescription fontdesc = Pango.FontDescription.FromString
(dialog.FontName);

TVMain.ModifyFont (fontdesc);

Ecmel