我在C#WPF应用程序中使用DevExpress GridControl。我在用作该网格的ItemSource的集合中拥有诸如ProductType,ProductCategory等的属性名称。(AutoGeneratingColumn设置为true。)但是我看到该网格在列标题标题中的单词之间添加了额外的空间。 。例如,产品类型,产品类别等有什么方法可以删除字幕中出现的空格?我确实尝试了以下方法,但是没有运气:e.column.ColumnChooserHeaderCaption= e.column.FieldName;
1 回答
白衣非少年
TA贡献1155条经验 获得超0个赞
DevExpress WPF网格:
//If this property is null the bound FieldName will be used with spaces between capitals
BaseColumn.Header = "Custom Header";
DevExpress WinForms网格:
//Same details apply if null as in WPF example
GridColumn.Caption = "Custom Header";
- 1 回答
- 0 关注
- 123 浏览
添加回答
举报
0/150
提交
取消