Is it possible to display the label text with line breaks exactly as per the image
I had to replace new lines with br
string newString = oldString.Replace("\n", "");
or if you use xml
Then in code behind
public string ShowLineBreaks(object text) { return (text.ToString().Replace("\n", "")); }