For multiline text box you have to use just 2 property for text box AcceptsReturn="True" TextWrapping="Wrap". consider the datagrid.
the xaml code for the
thank you.
the xaml code for the
<sdk:DataGridTemplateColumn CanUserReorder="False" CanUserResize="False" CanUserSort="False" Width="Auto" Header="Remarks" >
<sdk:DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBox AcceptsReturn="True" TextWrapping="Wrap"></TextBox>
</DataTemplate>
</sdk:DataGridTemplateColumn.CellTemplate>
</sdk:DataGridTemplateColumn>
thank you.
Comments
Post a Comment