For Multiline in TextBox we can use a TestBox Like this We can make a TextBox Control that will support Multiline by using 2 properties. TextWrapping="Wrap" and AcceptsReturn="True" The XAML code for this TextBox <TextBox Height="131" HorizontalAlignment="Left" Margin="6,6,0,0" Name="educationalInformationTextBox" VerticalAlignment="Top" Width="345" TextWrapping="Wrap" AcceptsReturn="True" />
Work smarter, not harder.