如何使用原生控件 #1146
Answered
by
Yopler
yanglei629
asked this question in
Q&A
如何使用原生控件
#1146
-
handycontrol中的GroupBox控件不是我想要的效果,我如何能够使用wpf原生的GroupBox组件 |
Beta Was this translation helpful? Give feedback.
Answered by
Yopler
Mar 31, 2022
Replies: 2 comments
-
Hi 🖐, Actually you use the default WPF <GroupBox Header="Header" Style="{x:Null}">
</GroupBox> Hope it can help 😊 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
NaBian
-
顺便说一下,如果要覆盖原生控件样式,可以这样 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi 🖐,
Actually you use the default WPF
GroupBox
.However, HandyControl apply a style to the control. You can just say to your
GroupBox
to have no style (= wpf default style) by writting :Hope it can help 😊