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
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" />
Comments
Post a Comment