从列标题中删除多余的空格

时间:2018-05-01 23:37:47

标签: c# devexpress gridcontrol

我在C#WPF应用程序中使用DevExpress GridControl。 我的集合中的ProductType,ProductCategory等属性名称被用作此网格的ItemSource。(AutoGeneratingColumn设置为true。) 但我发现网格在列标题标题中的单词之间增加了额外的空间...例如产品类型,产品类别等。

有什么办法可以删除字幕中出现的空格吗?

我确实尝试过以下但没有运气:

e.column.ColumnChooserHeaderCaption= e.column.FieldName;

感谢。

1 个答案:

答案 0 :(得分:1)

DevExpress WPF网格:

GLJPanel

DevExpress WinForms Grid:

//If this property is null the bound FieldName will be used with spaces between capitals
BaseColumn.Header = "Custom Header";