Take screenshot of screen behind form?
问题 I am trying to take a screenshot with a form of a screen BUT I don't want my form to be included in the screenshot. This is my current Code for getting the screenshot. Bitmap bt; Graphics screenshot; private void button1_Click_1(object sender, EventArgs e) { this.Opacity = 0; bt = new Bitmap(Screen.FromControl(this).Bounds.Width, Screen.FromControl(this).Bounds.Height, PixelFormat.Format32bppArgb); screenshot = Graphics.FromImage(bt); screenshot.CopyFromScreen(Screen.FromControl(this).Bounds