I have an application A that is made in WPF and WinForms.I have written another Application in WinForms for Capturing Screen. The problem I'm facing is that The dialog boxes that come up in Application A do not captured in the screen. The whole screen gets captured including the area behind the dialog box but the dialog box doesn't get captured.
    public void CaptureScreen(string filepath)
    {
        string[] words = filepath.Split('\\');
        string newFilePath = " ";
        foreach (string word in words)
        {
            if (!(word.Contains(".bmp")))
            {
                newFilePath = newFilePath + word + "//";
            }
            else
            {
                newFilePath = newFilePath + word;
            }
        }
        this.WindowState = FormWindowState.Minimized;
        Screen[] screens;
        screens = Screen.AllScreens;
        int noofscreens = screens.Length, maxwidth = 0, maxheight = 0;
        for (int i = 0; i < noofscreens; i++)
        {
            if (maxwidth < (screens[i].Bounds.X + screens[i].Bounds.Width)) maxwidth = screens[i].Bounds.X + screens[i].Bounds.Width;
            if (maxheight < (screens[i].Bounds.Y + screens[i].Bounds.Height)) maxheight = screens[i].Bounds.Y + screens[i].Bounds.Height;
        }
        var width = maxwidth;
        var height = maxheight;
        Point sourcePoint = Point.Empty;
        Point destinationPoint = Point.Empty;
        Rectangle rect = new Rectangle(0, 0, width, height);
        Bitmap bitmap = new Bitmap(rect.Width, rect.Height);
        Graphics g = Graphics.FromImage(bitmap);
       // g.CopyFromScreen(sourcePoint, destinationPoint, rect.Size);
        g.CopyFromScreen(new Point(rect.Left, rect.Top), Point.Empty, rect.Size);
        bitmap.Save(filepath, ImageFormat.Bmp);
        //Console.WriteLine("(width, height) = ({0}, {1})", maxx - minx, maxy - miny);
    }
}
}
 
    