从列 header 中删除多余的空格

Removing extra spaces from column header

我在我的 C# WPF 应用程序中使用 DevExpress GridControl。 我有 属性 个名称,例如 ProductType、ProductCategory 等。在我的 collection 中用作此网格的 ItemSource。(AutoGeneratingColumn 设置为 true。) 但我看到网格在 header 列标题的单词之间添加了额外的 space...例如产品类型、产品类别等

有什么方法可以删除出现在字幕中的 space 吗?

我确实尝试了以下但没有成功:

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

谢谢。

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";