如何取消子面板与其父面板的绑定?
如何使位于另一个可见属性设置为 false 的面板内的面板可见?
我正在使用 Windows 窗体。
How can I make a panel visible which is inside another panel whose visible property is set to false?
I am using Windows Forms.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是不可能的,Windows 硬规则。只是不要将要显示的面板设为要隐藏的面板的父面板。它应该是表单的父级。设计器并不容易做到这一点,您必须在调用 InitializeComponent() 之后将其移动到正确的位置。
That's not possible, hard Windows rule. Just don't make the parent of the panel you want to show the panel you want to hide. It should be parented to the form instead. The designer doesn't make that easy, you'll have to move it to the right spot after the InitializeComponent() call.