I\'m a newbie with wpf , what i want to display the text in one line in wpf textblock. eg.:
Instead of this:
Use this:
Hello
How Are
You??
or this:
Hello
How Are
You??
or set Text property in code behind like this :
(In XAML)
(In code - c#)
MyTextBlock.Text = "Hello How Are You??"
Code-behind approach has an advantage that you can format your text before setting it. Example: If the text is retrieved from a file and you want to remove any carriage-return new-line characters you can do it this way:
string textFromFile = System.IO.File.ReadAllText(@"Path\To\Text\File.txt");
MyTextBlock.Text = textFromFile.Replace("\n","").Replace("\r","");