ML

C# Form 해상도 별 전체화면 및 위치 설정

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;

  -> 가로 넓이의 반에 위치

반응형

댓글

Designed by JB FACTORY