如何关闭SplitContainer中的当前表单?
我的 SplitContainer 的右侧面板中有一个用户控件。用户控件下方将打开一个窗体。现在,如果我单击用户控件中的按钮,当前表单应关闭并应打开一个新表单。如何做到这一点?
I have a user control in my SplitContainer's right panel. A form opens below the user control. Now if i click a button in the user control, that current form should close and a new form should open. How to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在应用程序中轻松实现以下逻辑:
这将从容器中删除现有面板并放置其他面板。您可以扩展相同的逻辑来放置表单,或轻松地在容器上分离控件。
You can implement below logic in your app easily:
which will remove the existing panel from the container and place the other panel. You can extend the same logic to place forms, or separate controls on the container easily.