在 DataGridView 中托管自定义控件 - C# WinForm

发布于 2024-08-05 13:22:27 字数 236 浏览 4 评论 0原文

我查看了 http://msdn.microsoft.com/en-us/library /7tas5c80.aspx 供参考,就可编辑列而言,它是有意义的。

问题是如何在 DataGridView(WinForm 和 C#)中托管“仅查看”自定义控件?

I looked at http://msdn.microsoft.com/en-us/library/7tas5c80.aspx for reference and it makes sense as far as editable column goes.

The question is how do I host a "view only" custom control in a DataGridView (WinForm and C#)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

苯莒 2024-08-12 13:22:27

派生自 DataGridViewCell 并重写 Paint 方法。

Derive from DataGridViewCell and override the Paint methods.

甜味超标? 2024-08-12 13:22:27

另一种简单的方法是将该列设为网格的“DataKeyNames”列之一。默认情况下,用户编辑任何被视为“键”的字段都将被禁用。但是,如果您处理“单击”记录进行编辑或其他操作的对象分析,则返回键的数组将与 DataKeyNames 属性中列出的顺序相同。因此,即使您可能忽略了作为“键”的实际值,它也可以禁用它。

华泰

Another easy way would be to make that column one of the "DataKeyNames" columns of the grid. Any field that is considered a "Key" is by default disabled from a user editing it. However, if you deal with object analysis on "clicked" on records for editing, or other, the array of returned keys will be in the same sequence as they are listed in the DataKeyNames property. So, even though you may be ignoring the actual value as a "Key", it can act to disable it.

HTH

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