首页 > 其他分享 >获取WinForm窗体的宽度和高度

获取WinForm窗体的宽度和高度

时间:2023-01-25 22:32:46浏览次数:54  
标签:int Height Width Form1 宽度 窗体 ToString WinForm


我在VS2005中新建了一个C#窗体应用程序,该程序只有一个窗体,

窗体的变量名为Form1


刚开始时我是这样获取Form1的宽度和高度的:

int   width=Form1.Width;

int   height=Form1.Height;

结果获取不了,编译时老是出错!

 

在网上查了下,将代码修改如下即可:

private void button1_Click(object sender, EventArgs e)
{
int Width=this.Width;
int Height=this.Height;
MessageBox.Show(Width.ToString()+"+++"+Height.ToString());

}

 

获取WinForm窗体的宽度和高度_变量名

 

 

 

​​

 

 

标签:int,Height,Width,Form1,宽度,窗体,ToString,WinForm
From: https://blog.51cto.com/softo/6023023

相关文章