C# winfrom 窗体的StartPosition 属性

StartPosition属性有如下选项,分别含义如下:

CenterParent 窗体在其父窗体中居中。
CenterScreen 窗体在当前显示窗口中居中,其尺寸在窗体大小中指定。
Manual 窗体的位置由 Location 属性确定。
WindowsDefaultBounds 窗体定位在 Windows 默认位置,其边界也由 Windows 默认决定。
WindowsDefaultLocation 窗体定位在 Windows 默认位置,其尺寸在窗体大小中指定。

CenterScreen的意思并不是屏幕居中(是相对的),它是在"当前显示窗口"中居中。

当用Show()方法时应选择CenterScreen,

用ShowDialog()方法时应选择CenterParent,这样才能让要显示的窗口居中。
posted @ 2013-08-26 14:52  petercao  阅读(19066)  评论(0编辑  收藏  举报