Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Choosing the fonts for a Windows Forms application [closed]

I'm trying to design a Windows Forms application. By default, .NET had put Tahome 8,25 on the toolbar and Microsoft SansSerif 8,25 on everything else. To improve the general look and feel of the forms I'd like to change them.

Which font family should I use as a default? And what size should they be? For:

  • Classic data input form (label + textbox, label + combobox...)
  • Data grid

Is there a recommended way?

The application is a classic business application, you can think of it as an accounting type.

like image 692
Miroslav Zadravec Avatar asked Jul 08 '09 09:07

Miroslav Zadravec


2 Answers

Segoe UI - is a good all rounder. Introduced in Windows Vista it is used as the standard UI font, and it works well in small sizes.

Enter image description here

Source: http://neosmart.net/gallery/v/apps/fonts/Segoe+UI.png.html

like image 190
Josh Avatar answered Oct 20 '22 00:10

Josh


I would stick with the SystemFonts as that way the app stays consistent with their main UI. Same for colours, always tray and use SystemColor.

However if for some reason I can pick a font, before I had heard of Segoe UI, I used Verdana.

like image 38
Pondidum Avatar answered Oct 19 '22 22:10

Pondidum