在DataGridCell WPF中包装文本

时间:2016-05-04 04:40:44

标签: wpf c#-4.0

enter image description here在我的应用程序中,我绑定了datagrid。我为 datagridcell 编写了一个样式,所有样式属性都被执行但没有文本换行属性。它正在修剪单元格内的数据。

enter image description here

1 个答案:

答案 0 :(得分:-1)

您当前正在创建样式,但未将其设置为数据网格。将样式标记放在数据网格中。

<DataGrid --Your datagrid name here--> 
         <Style>                            
           <-- your style code here -->
         </Style>
 </DataGrid>