Notice
Recent Posts
Recent Comments
분노의 챔질
C# 확장 모니터에 프로그램 띄우기 본문
반응형
Screen[] sc = Screen.AllScreens;
foreach (var item in sc)
{
if(item.WorkingArea.Contains(this.Location))
this.Location = new Point(item.Bounds.Width + 10, 0);
}
form.show();
form.WindowState = FormWindowState.Maximized;
해봐
반응형