本文介绍了在vb.net的datagridview中使一个列可编辑的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在vb.net datagridview中只读列?我在datagrid中有5个列。我想只编辑第3列而不是全部。我设置datagirdview.Column(2).readonly = false

和datagridview属性设置为readonly true。但它不起作用。我不能编辑第3列。

How to make Column read only in vb.net datagridview? I have 5 Column in datagrid. I want to edit only 3rd Column not all. I set datagirdview.Column(2).readonly=false
and datagridview property set to readonly true. But its not working. I can''t edit that 3rd Column.

推荐答案

dataGridView1.ReadOnly =false;





比将代码中的所有列设置为readonly。 br $> b $ b



than set all the columns in your code as readonly.

foreach (DataGridViewColumn dgvc in dgSearchedResults.Columns)
                    {
                        dgvc.ReadOnly = true;
                    }





通过将required列的readonly属性设置为false来执行此操作。





follow that by setting the readonly property of required column to false.

dataGridView1.Columns("ColumnName").ReadOnly = false;


这篇关于在vb.net的datagridview中使一个列可编辑的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 10:28