📜  C# 窗体中的窗口高度 - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:39.994000             🧑  作者: Mango

代码示例1
//use this.Size in Form1 class

int windowWidth = this.Size.Width;
int windowHeight = this.Size.Height;