Yas Afdal
Yas Afdal

Reputation: 5

Changing the default font style and size of metro framework in C# WinForm

I'm using the MetroFramework v1.2.0.3. Is there a possibility to change the default font in Metro Framework? I think the default font style is "Segoe UI" and I want to change it to "Century Gothic". I'm searching about this problem but I don't see any solution. Thank you for helping me.

Upvotes: 0

Views: 1923

Answers (1)

TECNO
TECNO

Reputation: 322

With MetroFramework you can't se the font size directly. You have to basically edit the code in MetroFramework project and create a new size like "Extreme" or something and then define what that size is. I have done this in the past and its not very difficult. Just add the MetroFramework projects to your solution and trace how a MetroLabel gets initialized. That will be a good starting point.

Upvotes: 1

Related Questions