vote up 1 vote down star

I am using Segoe UI for my winforms application.

On XP, this font doesn't exist and I would like to have my app use Verdana instead.

What's the best way of achieving that.

flag

3 Answers

vote up 2 vote down check

It is always better to use default (system) font to achieve native look. So Vista uses 'Sergoe UI' as default font, and XP uses 'Tahoma' for this (not 'Verdana'). To get default dialog font use SystemFonts class:

protected override void OnLoad(EventArgs e)
{
  base.OnLoad(e);
  Font = SystemFonts.DialogFont;
}
link|flag
vote up 0 vote down

Start with JasonH's solution, including the part about deriving from Form. If you have problems with controls that don't inherit the Form's font automatically, call this code when your form has all of its controls:

foreach (Control ctl in this.Controls)
{
    ctl.Font = GetUIFont();
}
link|flag
vote up 0 vote down

What you want is something like this:

Font GetUIFont()
{
    Font testFont = new Font("Segoe UI", 10f);
    if (testFont.Name == "Segoe UI")
        return testFont;
    else
        return new Font("Verdana", 10f);
}
link|flag
...but how do you do that automatically, for every form and control in your application? How do you make sure that the layout is still correct? etc. etc. – Roger Lipscombe Jun 16 at 8:31
What you could do is derive from Form and then use your derived class. In the constructor for your derived form you could call the GetUIFont method to set the Form's font and then that would make it automatic. As far as layout, I've always seen my forms adjust automatically when I change the font size. You'll probably have to play around with that one and if you have problems, you can always ask for help here. ;) – jasonh Jun 16 at 16:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.