在 C# 中的 DataGridView 中创建列
我在 C# 中创建数据网格列时遇到问题,
这是我的代码。
DataGridViewColumn newCol = new DataGridViewColumn();
newCol.HeaderText = txtHeader.Text;
newCol.Width = Convert.ToInt16(cboWidth.Text);
dgWorkArea.Columns.Add(newCol);
在我上面的代码片段中,尝试调用第四(4)行代码时出现错误。这是错误。
datagridview 控件的至少一列没有单元格模板
任何人都可以帮助我了解如何在 datagrid 中创建一个简单的列。
I have a problem in creating a datagrid column in c#
here is my code.
DataGridViewColumn newCol = new DataGridViewColumn();
newCol.HeaderText = txtHeader.Text;
newCol.Width = Convert.ToInt16(cboWidth.Text);
dgWorkArea.Columns.Add(newCol);
On my above code snippet, the error's came when trying to call the fourth (4th) line code. Here is the error.
At least one of the datagridview control's columns has no cell template
Can anyone help me on how can I create a simple column in datagrid.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个。
DataGridViewColumn newCol = new DataGridViewTextBoxColumn
我认为在此之后您将不需要任何模板
您也可以选择复选框类型列或任何其他类型。 此处列出了所有可用选项
Try this.
DataGridViewColumn newCol = new DataGridViewTextBoxColumn
I think you wont need any template after this
You can also go for check box type column or any other type. All available options are listed here
http://msdn.microsoft.com/ru-ru/library /system.windows.forms.datagridviewcolumn
有不同类型的列:
DataGridViewTextBoxColumn、DataGridViewLinkColumn 等。
您需要这样的内容:
DataGridViewColumn newCol = new DataGridViewTextBoxColumn();
第一行中的
http://msdn.microsoft.com/ru-ru/library/system.windows.forms.datagridviewcolumn
there are different type of columns:
DataGridViewTextBoxColumn, DataGridViewLinkColumn, etc.
You need somethis like this:
DataGridViewColumn newCol = new DataGridViewTextBoxColumn();
in first row