FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
WindowState = FormWindowState.Maximized;
//듀얼 모니터 꽉차게 할시
//this.StartPosition = FormStartPosition.Manual;
//Rectangle fullScrenn_bounds;
//fullScrenn_bounds = Rectangle.Empty;
//foreach (var screen in Screen.AllScreens)
//{
// fullScrenn_bounds = Rectangle.Union(fullScrenn_bounds, screen.Bounds);
//}
//this.ClientSize = new Size(fullScrenn_bounds.Width, fullScrenn_bounds.Height);
//this.Location = new Point(fullScrenn_bounds.Left, fullScrenn_bounds.Top);
폼로드시 화면이 꽉차게 된다.
주석처리된 부부은 듀얼모니터 꽉차게 하고 싶을때
'개발 > C#' 카테고리의 다른 글
[팁] C# 웹브라우저를 설치되어 있는 IE와 동일한 버전으로 자동 설정하기 (0) | 2018.01.26 |
---|---|
[팁] C# 관리자 권한설정 (0) | 2018.01.26 |
[팁] C# 웹브라우저 ESC키로 종료하기 (0) | 2018.01.25 |
[팁] C# 웹브라우져를 익스플로러처럼 설정하기 (0) | 2018.01.25 |
[팁] C# 이미지 크기 조절 (0) | 2018.01.25 |
[팁] C# 윈폼 꾸미기 (0) | 2018.01.25 |
[팁] C# 하위폼에서 상위폼으로 데이터 전달 (1) | 2018.01.25 |
[팁] C# 데이터그리드뷰 엔터키 입력시 다음행 이동 금지 (1) | 2018.01.25 |