简体   繁体   中英

Get windows explorer font size of current user using C#

Is this possible with C# or do I need to do P/Invoke? I was thinking it's an easy way to determine which font size to set for my ListView.

Check under class SystemFonts. I don't think you need more than the default namespaces for this.

for example:

string name = SystemFonts.IconTitleFont.FontFamily.Name;
float size = SystemFonts.IconTitleFont.Size;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM