Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道如何在 WPF 中获得带有标题的边框,即 Web 浏览器显示 <fieldset> 标签的方式?有没有简单的方法,比如设置一个属性,还是我必须制作一个 ControlTemplate ?
也许是一个GroupBox?
<GroupBox> <GroupBox.Header> <Label>Hello</Label> </GroupBox.Header> <TextBlock Text="World!" /> </GroupBox>