Please tell me how to get the groupbox back #3054
-
Hi, Everyone. <Style x:Key="MaterialDesignGroupBox" TargetType="{x:Type GroupBox}">
</Style>
|
Beta Was this translation helpful? Give feedback.
Answered by
nicolaihenriksen
Jan 21, 2023
Replies: 1 comment 1 reply
-
@GLC-Kazetani If I understand you correctly, you are using Material Design for most parts, but want to opt-out of the That can be accomplished by setting the style to "null" directly on the <GroupBox Style="{x:Null}">
...
</GroupBox> If you want it application wide, you will want to "null" the style for the |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
GLC-Kazetani
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@GLC-Kazetani If I understand you correctly, you are using Material Design for most parts, but want to opt-out of the
GroupBox
style?That can be accomplished by setting the style to "null" directly on the
GroupBox
in this manner:If you want it application wide, you will want to "null" the style for the
GroupBox
type in yourApp.Xaml
or similar.