Answers for "new line in wpf label"

C#
0

linebreak wpf label

<Label><TextBlock>Lorem<LineBreak/>ipsum</TextBlock></Label>
Posted by: Guest on May-20-2020
0

textblock line break

Text="Line1&#10;Line2"
//or
<TextBlock>
    line1
    <LineBreak />
    line2
</TextBlock>
Posted by: Guest on June-05-2020

C# Answers by Framework

Browse Popular Code Answers by Language