■ Form 클래스에서 화면 중앙에 배치하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
using System.Drawing; using System.Windows.Forms; #region 화면 중앙에 배치하기 - PlaceScreenCenter(form) /// <summary> /// 화면 중앙에 배치하기 /// </summary> /// <param name="form">Form</param> public void PlaceScreenCenter(Form form) { Size screenSize = GetScreenSize(); // "Screen 클래스 : 화면 크기 구하기" 참조 form.Location = new Point ( screenSize.Width / 2 - form.Size.Width / 2, screenSize.Height / 2 - form.Size.Height / 2 ); } #endregion |