namespace WinFormsApp1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
int width = this.Width; // Get the window width
int height = this.Height; // Get the window height
MessageBox.Show($"Window Size: {width} x {height}", "Window Size");
}
}
}
/*
run:
Window Size: 816 x 489
*/