당신은 여기, 당신은 윈폼을 참조 할 수 있습니다 가정, 작업중인 프레임 워크를 언급하지 않았다 특정 화면에 최대 폼을 표시하는 방법입니다 :
System.Windows.Forms.Screen[] screens;
screens = System.Windows.Forms.Screen.AllScreens;
System.Windows.Forms.Screen selectedScreen = screens[1]; // choose your preffered monitor
// Sets the form to show maximized on the selected screen:
form.Left = currentScreen.Bounds.Width;
form.Top = currentScreen.Bounds.Height;
form.StartPosition = FormStartPosition.Manual;
form.Location = currentScreen.Bounds.Location;
Point p = new Point(currentScreen.Bounds.Location.X, currentScreen.Bounds.Location.Y);
form.Location = p;
form.WindowState = FormWindowState.Maximized;
form.Show();
당신이 양식 테두리를 해제하고있는 경우 PictureBox가 선택한 이미지를 표시하는 "채우기"에 고정되면 원하는 목표를 달성하고 태블릿 화면을 이미지로 덮을 수 있습니다.
적절한 현상금 질문 인 것 같습니다. –
어떻게 보상하나요? 감사! – JLopez
안녕하세요! 어떤 도움을 주시겠습니까? – JLopez