I'm making a universal application for myself (mainly to learn and challenge myself), I want to capture the top left of my second monitor (2nd is on the left side), but I only know how to capture on my main monitor
Rectangle rect = new Rectangle(0, 0, 100, 100);
Bitmap bm = new Bitmap(rect.Width, rect.Height, PixelFormat.Format32bppArgb);
Graphics g = Graphics.FromImage(bm);
g.CopyFromScreen(0, 0, 0, 0, bm.Size);
pictureBox1.Image = bm;