在 C# 中的 DataGridView 中创建列

发布于 2024-11-09 01:13:33 字数 370 浏览 7 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情愿 2024-11-16 01:13:33

试试这个。

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

月牙弯弯 2024-11-16 01:13:33

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文