
WindowsForm
zhouge_IT
本人男,80后,2006年大学本科毕业,从事软件开发及项目管理工作。专注于.Net开发、安卓APP研发。教育学学士、电子科技大学软件工程硕士。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
winfrom 控件背景颜色自定义RGB 值
label.BackColor = Color.FromArgb(255, 255, 0, 0); 4个数的顺序是a,r,g,b a是透明度,后面是红绿蓝的值,范围为0-255原创 2015-01-01 12:02:55 · 2671 阅读 · 0 评论 -
winform窗体位置设置
/ 获取屏幕分辨率 int SH = Screen.PrimaryScreen.Bounds.Height; int SW = Screen.PrimaryScreen.Bounds.Width; System.Windows.Forms.SystemInformation.WorkingArea.Width 屏幕宽度 System.Windows.Forms.System原创 2015-01-01 12:04:52 · 1531 阅读 · 0 评论