In a C# WPF window, what control can I use to create a separator with a text label, for example:
Note: I am aware of <separator/>
(as in the answer to the alleged duplicate question), but I couldn't find how to add a text label to it.
Try this,
<DockPanel Height="25">
<Label DockPanel.Dock="Left" Content="SomeText"/>
<Separator/>
</DockPanel>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With