How to change all uppercased by MahApps fonts back to normal in the whole application? #4092
Answered
by
punker76
herczegzoltan
asked this question in
Q&A
-
I have a MVVM application and after adding MahApps I can not change the uppercased fonts back to normal, like header of listview, buttons etc. |
Beta Was this translation helpful? Give feedback.
Answered by
punker76
Apr 27, 2021
Replies: 1 comment 1 reply
-
The header of a ListView can be changed like this <Style BasedOn="{StaticResource MahApps.Styles.GridViewColumnHeader}" TargetType="GridViewColumnHeader">
<Setter Property="mah:ControlsHelper.ContentCharacterCasing" Value="Normal" />
</Style> On a Button or any other ContentControl which uses this attached property this can be done like this <Button mah:ControlsHelper.ContentCharacterCasing="Normal" /> The |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
herczegzoltan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The header of a ListView can be changed like this
On a Button or any other ContentControl which uses this attached property this can be done like this
The
mah
namespace isxmlns:mah="http://metro.mahapps.com/winfx/xaml/controls"