vote up 1 vote down star
1

I am having a hard time to find out which font is used by the Win 7 File Explorer in the tree view on the left hand side. Better, of course, would be if I can programmatically find out which the right font is (C#).

I searched the Windows 7 design guidelines but this particular scenario is not listed (at least I couldn't find it).

So anyone good with fonts?

flag

Yeah, I tried Segoe UI 9pt but on my tree view the result doesn't look like the font of the Windows Explorer. I created a dummy treeview with Favorites and a child item Desktop to mimic the first two items of the explorer side bar and when I compare the two it sure looks different. The letter D for example is more compact. I also tried different sizes but no success. – Stefan Koell Nov 1 at 23:06
Have you tried right-clicking on the desktop and selecting Personalize yet? – Robert Harvey Nov 2 at 23:01
Yes, all the objects with a font configured is Segoe UI 9 but it obviously is not in the Explorer Sidebar. When I change the Icon text font it also changes the sidebar font but when I set it to Segoe UI 9 it is a slightly differen, more compact font than Segoe UI 9. Fire up a demo win forms application and set this font on a tree view and you will see what I mean. – Stefan Koell Nov 3 at 9:31
Your question asked about Win 7 File Explorer. That is not a demo win forms application. WinForms applications default to different fonts. – Windows programmer Nov 3 at 23:19
Maybe I misinterpreted your latest comment. Please ignore my latest comment. The tree view control defaults to using the same font as icon titles, but applications can change it. WinForms applications do default to setting their forms to use different fonts than plain Win32 defaults. Now I guess you're saying that Win 7 File Explorer also tells its tree view to use a different font than plain Win32 defaults. If the user has an Explorer window open you can find the window and get its font, but if the user doesn't have one open, it seems difficult. – Windows programmer Nov 4 at 3:39
show 3 more comments

4 Answers

vote up 1 vote down check

P/Invoke to SystemParametersInfo with SPI_GETICONTITLELOGFONT.

It depends on the language version of Windows. If you look at Robert Harvey's answer, you'll see a character that can't be displayed by Segoe UI.

link|flag
vote up 0 vote down

It is not Segoe. I've spent the last three days attempting to reverse engineer Windows Explorer in Windows 7. Having worked with WPF and Vista, Segoe UI was my first choice for a font family, but I can confirm that it doesn't match up with what Windows Explorer is using.

link|flag
glad to hear that I am not alone (and not insane). If you find out more about the font, let us know... – Stefan Koell Dec 17 at 8:01
vote up 1 vote down

It's Segoe UI. In the future, you can use WhatTheFont to resolve any questions you have about what font something is.

link|flag
Thanks for the link, I will try that one... – Stefan Koell Nov 1 at 23:07
vote up 2 vote down

Actually it's probably Segoe UI.

alt text

If you right-click on the desktop and select Personalize from the menu that pops up, you should find a place in there that will tell you what the default window content font is.

http://www.sevenforums.com/tutorials/1175-fonts-change.html

link|flag

Your Answer

Get an OpenID
or

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