C# Form 해상도 별 전체화면 및 위치 설정
- 공부/프로그래밍
- 2020. 3. 28. 06:10
728x90
반응형
Screen.PrimaryScreen.Bounds - 모니터의 해상도를 구하는 메서드
private void Form_Load(object sender, EventArgs e)
{
picturebox.Image = Properties.Resources.사진파일명;
picturebox.BorderStyle = BorderStyle.None;
picturebox.Width = this.Width;
picturebox.Height = this.Height;
picturebox.SizeMode = PictureBoxSizeMode.StretchImage;
picturebox.Left = Screen.PrimaryScreen.Bounds.Width - this.Width;
picturebox.Top = Screen.PrimaryScreen.Bounds.Height - this.Height;
}
Screen.PrimaryScreen.Bounds.Width * 1/2;
-> 가로 넓이의 반에 위치
반응형
'공부 > 프로그래밍' 카테고리의 다른 글
Python 파이썬 문자열을 다루어 보자 #1 (0) | 2020.07.22 |
---|---|
pandas - 엑셀 파일 합치기 소스 (0) | 2020.07.18 |
C# listview에 저장되는 데이터 파일로 저장하기 (0) | 2020.03.25 |
마스크 자동 구매 프로그램 [마스크 구매 크롤러] (0) | 2020.03.18 |
Pandas 판다스를 이용한 엑셀 자동화 (엑셀 (0) | 2020.02.13 |