为什么 CheckedListBox 的数据绑定“隐藏”?

发布于 2024-08-03 00:47:21 字数 173 浏览 8 评论 0原文

CheckedListBox 上的 DataSource 属性对 Intellisense 是隐藏的。为什么?您可以使用绑定属性来使其工作,但我担心它由于某种原因而被隐藏,并且由于某些我不知道的重要原因,我不应该在 CheckedListBox 上进行数据绑定。

CheckedListBox 上的数据绑定可以吗?

The DataSource property on a CheckedListBox is hidden from Intellisense. Why? You can use the binding properties to make it work, but I'm worried that it's hidden for a reason and that I shouldn't be databinding on a CheckedListBox for some important reason that I'm not aware of.

Is databinding on a CheckedListBox ok??

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

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

发布评论

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

评论(1

沫尐诺 2024-08-10 00:47:21

CheckedListBox 旨在与其 一起使用添加AddRange 方法:

在运行时将对象添加到列表中
时间,分配一个对象数组
使用 AddRange 方法进行引用。
然后列表显示默认值
每个对象的字符串值。你可以
将单个项目添加到列表中
Add 方法。

虽然数据绑定到 CheckedListBox 可能有效,但您应该避免对除类型的公共接口之外的任何内容创建依赖项。我建议您使用正确的方法,因为这将使您的代码在 Microsoft 更改 CheckedListBox 的实现时变得不那么脆弱。

The CheckedListBox is intended to be used with its Add and AddRange methods:

To add objects to the list at run
time, assign an array of object
references with the AddRange method.
The list then displays the default
string value for each object. You can
add individual items to the list with
the Add method.

While data binding to the CheckedListBox may work you ought to avoid creating dependencies on anything but the public interface of a type. I would recommend that you use the proper methods as this will make you code less brittle in the event that Microsoft changes the implementation of CheckedListBox.

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