Windows 窗体:PropertyGrid

发布于 2024-09-16 06:05:34 字数 289 浏览 7 评论 0原文

是否设置 PropertyGrid.SelectedObject = null;影响实际物体? 例如:

Button b = new Button();
System.Windows.Forms.PropertyGrid pg = new System.Windows.Forms.PropertyGrid();
pg.SelectedObject = b;

pg.SelectedObject = null;

按钮 b 会发生什么?它会为空吗?

谢谢&问候, 维沙尔。

Does setting PropertyGrid.SelectedObject = null; effects the actual object?
eg:

Button b = new Button();
System.Windows.Forms.PropertyGrid pg = new System.Windows.Forms.PropertyGrid();
pg.SelectedObject = b;

pg.SelectedObject = null;

What will happen to Button b? will it be null?

Thanks & regards,
Vishal.

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

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

发布评论

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

评论(1

熊抱啵儿 2024-09-23 06:05:34

设置 PropertyGrid.SelectedObject 仅影响 PropertyGrid。如果将 SelectedObject 设置为 null,则意味着属性网格中根本没有显示任何对象。在您的示例中,按钮 b 将不会受到影响。

Setting PropertyGrid.SelectedObject only affects the PropertyGrid. If you set SelectedObject to null, it means that there is simply no object displayed in the property grid. In your example, button b will not be affected.

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