0

我正在使用 c# 开发一个 Windows 窗体应用程序。它有 mdi 父窗体和子窗体。我的开发环境分辨率是 1366 * 768。但我想开发这个应用程序以适应任何分辨率我该怎么做?例如(1024 * 768 等)

目前,我在 mdi parent 的表单加载事件中使用了以下几行。

 this.Location = Screen.PrimaryScreen.WorkingArea.Location;
 this.Size = Screen.PrimaryScreen.WorkingArea.Size;
4

1 回答 1

1

您遇到的控件不合适的问题可以通过锚定或对接控件来解决。通过这种方式,您可以决定何时缩小表格,孩子们会发生什么。以下是一些您可能会发现有用的教程:

http://www.techotopia.com/index.php/Designing_Forms_in_C_Sharp_and_Visual_Studio http://msdn.microsoft.com/en-us/library/8y52cxte%28v=vs.80%29.aspx http://www.devx。 com/dotnet/Article/6964/0/page/3 http://www.techrepublic.com/article/manage-winform-controls-using-the-anchor-and-dock-properties/6165908

于 2012-12-11T00:44:44.513 回答