1
我想知道設計全屏窗體的最佳方式,比如定位控件的方式,如果用戶的分辨率不同,它們不會混亂。在C#中設計全屏應用程序的最佳方式是什麼?
這是我的全屏代碼:
int w = Screen.PrimaryScreen.Bounds.Width;
int h = Screen.PrimaryScreen.Bounds.Height;
this.Location = new Point(0, 0);
this.Size = new Size(w, h);
錨和碼頭。 – LarsTech
查看此MSDN文章[Windows窗體中的自動縮放](http://msdn.microsoft.com/zh-cn/library/ms229605.aspx) – csteinmueller