gridControl主子表怎样隐藏子表的列
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gridControl主子表怎样隐藏子表的列相关的知识,希望对你有一定的参考价值。
private void grvDetail_MasterRowExpanded(object sender, DevExpress.XtraGrid.Views.Grid.CustomMasterRowEventArgs e)
{
DevExpress.XtraGrid.Views.Grid.GridView aView = grvDetail.GetDetailView(e.RowHandle, e.RelationIndex) as DevExpress.XtraGrid.Views.Grid.GridView;
//grvDetail.BeginUpdate();
//this.gridView1.Columns["moid"].Visible = false;
//gridView1.Columns["moid"].OptionsColumn.ShowInCustomizationForm = false;
//grvDetail.EndUpdate();
//DevExpress.XtraGrid.Views.Grid.GridView aView = (DevExpress.XtraGrid.Views.Grid.GridView)gridView1.GetDetailView(e.RowHandle, 0);
if (aView != null)
{
aView.BestFitColumns();
if (aView.Columns.ColumnByFieldName("moid") != null)
{
aView.Columns["moid"].VisibleIndex = -1;
}
}
}
以上是关于gridControl主子表怎样隐藏子表的列的主要内容,如果未能解决你的问题,请参考以下文章
-- 使用当前(子表)表某字段更新 对应行记录其他字段 (存在主子表关系) left join