Turn off inheritance of properties (e.g. Font weight)

  • Thread starter Thread starter Roland Müller
  • Start date Start date
R

Roland Müller

Hello NG,

i have a form (c#) with a tab control.
If I change the weight of the font in the tab control all other fonts in the
form (e.g. labels) also become this weight.
It is a inheritence.

How can i turn off this?


Thanks, Roland
 
* "Roland Müller said:
i have a form (c#) with a tab control.
If I change the weight of the font in the tab control all other fonts in the
form (e.g. labels) also become this weight.
It is a inheritence.

AFAIK, that's only possible by cloning the 'Font' objects of the
controls and resetting them after changing the container's font.
 
Back
Top