如何隐藏 Devexpress GridLookUpEdit 的列标题?

发布于 2024-10-04 14:31:41 字数 225 浏览 2 评论 0原文

我目前有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

晚雾 2024-10-11 14:31:41

使用:

lookupedit.Properties.View.OptionsView.ShowColumnHeaders = False

Use:

lookupedit.Properties.View.OptionsView.ShowColumnHeaders = False
铁憨憨 2024-10-11 14:31:41

使用以下代码隐藏列:

gridLookUpEdit1.Properties.View.Columns("SomeFieldName").Visible = false

Use the following code to hide a column:

gridLookUpEdit1.Properties.View.Columns("SomeFieldName").Visible = false
匿名。 2024-10-11 14:31:41

您要做的就是运行属性编辑器,转到列并选择您的查找编辑分配到的列。然后展开列编辑,然后展开其中的视图,然后展开选项视图。然后将 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.

挽你眉间 2024-10-11 14:31:41

对于 devexpress 18.2.8,

我使用以下代码来隐藏列:

using (DataTable dt = rst.ResultSet.Tables[0].Copy())
{
    dt.Columns["Unit_ID"].ColumnMapping = MappingType.Hidden;
    ddlUnitOfMeasurement.Properties.DataSource = dt.DefaultView;
    ddlUnitOfMeasurement.Properties.ValueMember = "Unit_ID";
    ddlUnitOfMeasurement.Properties.DisplayMember = "Unit_Name"; 
}

For devexpress 18.2.8

I'm using the following code to hide a column:

using (DataTable dt = rst.ResultSet.Tables[0].Copy())
{
    dt.Columns["Unit_ID"].ColumnMapping = MappingType.Hidden;
    ddlUnitOfMeasurement.Properties.DataSource = dt.DefaultView;
    ddlUnitOfMeasurement.Properties.ValueMember = "Unit_ID";
    ddlUnitOfMeasurement.Properties.DisplayMember = "Unit_Name"; 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文