Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Default Font Size List

Tags:

c#

.net

wpf

fonts

I need some minor text formatting control in my application, I have got a font family ComboBox working fine, which was a simple exercise achieved in just XAML but now I wanted to fill the font size ComboBox with default font sizes.

Obviously most applications like Word, Outlook etc have this kind of interface for selecting font size with default like:

8
9
10
11
12
14
..
72

Now I can implement something to provide these numbers easily enough, I was just wondering if there was a framework method which would provided them for me seeing as I'm using the framework to populate the font families ComboBox?

Many Thanks

Paul

like image 343
Paulie Waulie Avatar asked Nov 13 '22 08:11

Paulie Waulie


1 Answers

I'd say these values are arbitrary. Just generate your own list.

like image 140
EricSchaefer Avatar answered Nov 16 '22 04:11

EricSchaefer