如何手动调用最大化事件
我有一种表单,我希望它以最大化状态加载。如何在表单加载时调用窗口最大化事件?
I am having one form, and I want that to load in the maximized state. How do I call the windows maximize event on form load?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您应该将 WindowState 属性 设置为表单加载到表单上。将其设置为
FormWindowState.Maximized
。You should set the WindowState property of the form on the load of the form. Set it to
FormWindowState.Maximized
.您不应该调用任何事件。只需将
WindowState
属性设置为最大化即可:You should not call any events. Simply set the
WindowState
property to maximized:只需将表单的 WindowsState 属性 设置为最大化。然后它应该启动最大化。
Just set the form's WindowsState property to maximized. Then it should start up Maximized.