本文介绍了在有界dataGridView的第一行中添加TextBox的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有绑定的dataGridView。
Ex。
I have dataGridView which is Binded.
Ex.
List<studentmaster> lstStudent = StudentMaster.SelectAllStudentDetails();
dataGridView1.DataSource = lstStudent;
现在,我想将TextBox设置为第一行的第一列。
表示TextBox位于 Row = 0且Column = 0 位置仅适用于可编辑模式,其他其他数据仅作为只读模式。
Now, I want to Set TextBox in to the First Column of First Row.
Means TextBox at Row=0 and Column=0 position Only for Editable Mode and rest of others data as read only mode.
推荐答案
这篇关于在有界dataGridView的第一行中添加TextBox的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!