Using the "New Font" construction

To change the design, you should use style elements and not set specific values directly in the controls.

Noncompliant Code Example

Font = new Font(, 1, True, True, False, True, 100); ...

Compliant Solution

Font = StyleFonts.<Name of style element>; ...

This is required in order for similar controls to look the same in all forms where they occur.

See