本文介绍了删除Gridview上的列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我有一个有10列的Gridview。我有一个条件,我需要 隐藏其中的5个,但我不知道如何隐藏列。我可以在行数据绑定事件中隐藏一个单元格确定 但不是如何隐藏整列(我假设在数据绑定之前是)。谢谢。 David 解决方案 MyGridView.Columns [n] .Visible = false; MyGridView.Columns [n] .Visible = false; I have a Gridview that has 10 columns. I have a condition where I need tohide 5 of them but I''m not sure how to hide a column. I can hide a cell okin the row databound event but not sur how to hide whole columns (I assumebefore databound). Thanks. David 解决方案 MyGridView.Columns[n].Visible = false; MyGridView.Columns[n].Visible = false; 这篇关于删除Gridview上的列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-24 18:15