如何以编译器检查的方式寻址 DataGridView 行的特定单元格?
例如这样:
myDataGridView.Rows[0].<something>myColumnName</something>.
目前我正在使用
myDataGridView.Rows[0].Cells["myColumnName"]
,但这没有经过编译器检查。
[已删除]
谢谢。
For example like this:
myDataGridView.Rows[0].<something>myColumnName</something>.
Currently I am using
myDataGridView.Rows[0].Cells["myColumnName"]
but this is not compiler-checked.
[deleted]
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许您想要:
用于:
Perhaps you want:
for:
编译器无法确保您使用实际的列名称。但是您可以使用 const 或 enum 来接近。
或
但您需要确保使用
ColumnNames
值作为列名称。There's no way to have the compiler ensure you're using actual column names. But you can get close using
const
s or anenum
.or
But it's up to you to make sure you use the
ColumnNames
values as column names.