.net - Get windows explorer font size of current user using C# -


Is it possible with C # or do I have to apply? I was thinking that this is an easy way to set which font size for my list view.

Check the SystemFonts below the category. I do not think you need more than default namespaces for this.

For example:

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

Comments