Windows 窗体:PropertyGrid
是否设置 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置 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.