如何使某些列在GridView中不可见

如何使某些列在GridView中不可见

本文介绍了如何使某些列在GridView中不可见的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨盖兹,

我怎样才能使某个列保持不可见状态,但仍然可以访问数据,该数据来自数据库,并且我将其动态绑定到gridview中,请帮助

提前thnk

hi guyz,

how can i make a certain column invisbile but still i can access data, the data comes from database and i bind it in gridview dynamically, pls help

thnk in advance

推荐答案


DataGridViewColumn column2 = dataGridView1.Columns[1];  // to hide 2nd column
column2.Visible = false;



希望对您有所帮助.



Hope this will help you.


gridview1.Columns[index].Visible = false;


这篇关于如何使某些列在GridView中不可见的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-04 22:41