I want to use multiple line tool tip in wpf but thie is look like
line 1
line2
but i want to display this miltiple line tool tip in the given format
line 1
line 2
I personally prefer to embed 

(new line) into the strings I'll be using as tooltips.
ex. Tooltip="line 1 
line 2"
I can then load the strings from resource files and conveniently apply them if I wish without having to go through any additional formatting.
Here is a way to do it with a Label as an example:
<Label>
<Label.ToolTip>
<StackPanel>
<TextBlock>Line 1</TextBlock>
<TextBlock>Line 2</TextBlock>
</StackPanel>
</Label.ToolTip>
</Label>
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