C#에서 윈도우즈의 해상도를 가져오는 방법은 다음과 같다.
1.
Screen.PrimaryScreen.Bounds.Width
Screen.PrimaryScreen.Bounds.Height
2.
System.Windows.Forms.SystemInformation.VirtualScreen.Width;
System.Windows.Forms.SystemInformation.VirtualScreen.Height;
이를 이용해 폼을 윈도우즈의 정중앙에 띄울수 도 있다.
this.Location = new Point(
Screen.PrimaryScreen.Bounds.Width/2 - this.Size.Width/2,
Screen.PrimaryScreen.Bounds.Height/2 - this.Size.Height/2
);
신뢰사이트 등록하기 (0) | 2012.02.27 |
---|---|
System Information (0) | 2012.02.15 |
URL spy (0) | 2012.01.27 |
IE 실행 시키기 (0) | 2012.01.27 |
원격장비 PORT 열려있는지 확인 (0) | 2012.01.04 |