C# 스샷1 [C#] 초간단 캡쳐 함수 Graphics의 CopyFromScreen()함수가 주역 //현재 폼 캡쳐 private void btnCapture_Click(object sender, EventArgs e) { ScreenCapture(this.Width, this.Height, this.Location); } //Full Screen 캡쳐 private void btnFullScreenCapture_Click(object sender, EventArgs e) { ScreenCapture(Screen.PrimaryScreen.WorkingArea.Width, Screen.PrimaryScreen.WorkingArea.Height, new Point(0, 0)); } //캡쳐 함수 private void ScreenCapture(i.. 2011. 1. 11. 이전 1 다음