GTKSharp, Pango, set font size quirkiness

Posted by nubela on Stack Overflow See other posts from Stack Overflow or by nubela
Published on 2010-03-14T22:23:05Z Indexed on 2010/06/08 4:42 UTC
Read the original article Hit count: 470

Filed under:
|
|
|

Hi guys,

I'm using GTK Sharp to work on some GUI for my app.

Take a look at this chunk of code:

Pango.FontDescription fontdesc = new Pango.FontDescription();
fontdesc.Family = "Sans";
//fontdesc.Size = 12;
fontdesc.Weight = Pango.Weight.Semibold;
SyncInfo.ModifyFont(fontdesc);
Gdk.Color fontcolor = new Gdk.Color(255,255,255);
SyncInfo.ModifyFg(StateType.Normal, fontcolor);

Notice fontdesc.Size is commented out. Because only when I comment it out, will I see the label with text. If I set any value to it, the label will not appear.

Also, I did a Console.WriteLine, and the default Size is 0. So I tried frontdesc.Size = 0, and it still disappears, any idea?

Thanks!

© Stack Overflow or respective owner

Related posts about c#

Related posts about mono