如何隐藏 Devexpress GridLookUpEdit 的列标题?
我目前有一个 DevExpress GridControl,其中一列在 ColumnEdit 下分配了 GridLookUpEdit。然而,当我运行时,会显示一个列名称(显示成员)。
我知道使用 LookUpEdit,您可以使用 lookupedit.Properties.ShowHeader = False
将列标题设置为不可见,但我不知道如何使其对 GridLookUpEdit 不可见。
I currently have a DevExpress GridControl where one of the columns have a GridLookUpEdit assigned under ColumnEdit. Yet when I run there is a column name (the display member) that shows up.
I know with a LookUpEdit you can set the column headers to invisible with lookupedit.Properties.ShowHeader = False
but I have no clue how to make it invisible for the GridLookUpEdit.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用:
Use:
使用以下代码隐藏列:
Use the following code to hide a column:
您要做的就是运行属性编辑器,转到列并选择您的查找编辑分配到的列。然后展开列编辑,然后展开其中的视图,然后展开选项视图。然后将 ShowColumnHeaders 设置为 false。这会将查找编辑中的所有列标题设置为 false。
What you do is run the property editor, go to columns and select the column that your lookupedit is assigned to. Then expand your column edit, then the view within, then the OptionsView. Then set ShowColumnHeaders to false. This will set all of the column headers within the lookupedit to false.
对于 devexpress 18.2.8,
我使用以下代码来隐藏列:
For devexpress 18.2.8
I'm using the following code to hide a column: