如何使我的应用程序区域适应用户的显示器分辨率?
如何使我的应用程序区域适应用户的显示器分辨率?
我在 1280*768 分辨率显示器上创建了一个 winForms 应用程序,该应用程序通常在较小的笔记本电脑(10 英寸)上使用。现在我需要在整个应用程序上使用滚动条,以便间距保持与我设计的相同。为此,应用程序上必须有一个滚动条(水平和垂直)。
我该如何实现这一目标?
how do I adapt the my application area to the user's monitor resolution?
I have created a winForms application on 1280*768 resolution monitor and the application is generally used on smaller laptops (10inches). Now I need to a scrollbar on my entire application so that the spacing remains the same as I have designed. For this, there has to be a scrollbar (Both Horizontal and Vertical) on the application.
How do I achieve that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将窗体的 AutoScroll 设置为 True,并将 AutoScrollMinSize 设置为所需的区域。如果表单小于给定区域,则会出现滚动条。当您移动它们时,控件将自动移动。
Set the form's AutoScroll to True, and set the AutoScrollMinSize to the area you want. If the form is smaller than the given area, scrollbars will appear. When you move them the controls will move automatically.