WinForm window Basic Configuration

Original link: http://www.cnblogs.com/TSPWater/archive/2013/03/25/2981146.html

WinForm pop-up window configuration

// Window Size

Szie: pull yourself (xx, xx)

// window pops up position

StartPosition:CenterParent

// window icon

Icon: selected images (ico format)

// whether to show icons

ShowIcon:True  

// maximize the upper right corner click on the minimize button icon

MaximizeBox:False

MinimizeBox:False

// drag and drop window size

SizeGripStyle:Hide

// appears in the taskbar

ShowInTaskbar:False

// The window is always on top of other windows

TopMost:False

 

Reproduced in: https: //www.cnblogs.com/TSPWater/archive/2013/03/25/2981146.html

Guess you like

Origin blog.csdn.net/weixin_30772261/article/details/95302689