WPF Header Borders

Does anyone know how to get border in WPF with caption, that is, a way to display web browsers <fieldset> tags? Is there an easy way, for example, to set a property, or will I have to create a ControlTemplate?

+6
wpf border caption
source share
1 answer

Perhaps a groupbox ?

<GroupBox> <GroupBox.Header> <Label>Hello</Label> </GroupBox.Header> <TextBlock Text="World!" /> </GroupBox> 
+16
source share

All Articles