标签:
一、C#中弹出窗口位置
加入命名空间using System.Drawing和using System.Windows.Forms
假定窗口名为form1,则
窗体位置是Windows默认,大小在窗体大小中确定
二、获取屏幕
int width=SystemInformation.VirtualScreen.Width;
获取屏幕宽度
int height = SystemInformation.VirtualScreen.Height;
获取屏幕高度
标签:
原文地址:http://www.cnblogs.com/liushenglin/p/5350641.html