就拿WPF弹出窗口的屏幕截图(Take screenshot of wpf popup window

2019-08-01 10:28发布

我试图把在WPF writen应用程序的屏幕截图和应用程序没有捕捉到,我必须使用专用工具采取的截图?

Answer 1:

您可以使用RenderTargetBitmap生成从您的WPF控件的图像。

    public const int IMAGE_DPI = 96;

    public Image GenerateImage(T control)
        where T : Control, new()
    {
        Size size = RetrieveDesiredSize(control);

        Rect rect = new Rect(0, 0, size.Width, size.Height);

        RenderTargetBitmap rtb = new RenderTargetBitmap((int)size.Width, (int)size.Height, IMAGE_DPI, IMAGE_DPI, PixelFormats.Pbgra32);

        control.Arrange(rect); //Let the control arrange itself inside your Rectangle
        rtb.Render(control); //Render the control on the RenderTargetBitmap

        //Now encode and convert to a gdi+ Image object
        PngBitmapEncoder png = new PngBitmapEncoder();
        png.Frames.Add(BitmapFrame.Create(rtb));
        using (MemoryStream stream = new MemoryStream())
        {
            png.Save(stream);
            return Image.FromStream(stream);
        }
    }

    private Size RetrieveDesiredSize(T control)
    {
        if (Equals(control.Width, double.NaN) || Equals(control.Height, double.NaN))
        {
            //Make sure the control has measured first:
            control.Measure(new Size(double.MaxValue, double.MaxValue));

            return control.DesiredSize;
        }

        return new Size(control.Width, control.Height);
    }

请注意,这将产生一个PNG图像;)如果您希望将其存储为JPEG,我建议你使用其他的编码器:)

Image image = GenerateImage(gridControl);
image.Save("mygrid.png");


Answer 2:

你可以简单地按PrtScr按钮(Windows将复制整个descktop图像缓冲),然后将其粘贴在电源点和作物,如果你喜欢。



Answer 3:

我有同样的问题,我需要截图来记录我的测试,但似乎无法到达那里。

有问题的窗口是一个无边界模式窗口圆角/透明度允许的。 这里是我的报告:

  • 惠普质量中心的屏幕截图工具不能识别它作为一个窗口,因此取其截图仿佛窗口都没有了。
  • SnagIt的利用keycombo进入拍摄模式。 一旦行程被击中,在弹出消失。 它再次捕获结束后。
  • 标准的Windows捕获工程确定(ALT + PRT SCR)和捕捉,因为它的目的是要捕获的窗口。

我想接下来的事情是捕捉与打开的下拉列表窗口。 上面提到的方法都没有似乎工作(最后一个方法捕获窗口以同样的方式采取和以前一样,没有开下拉菜单)。

至于我都谈理解正确,你唯一可以做的就是落实到应用此...



文章来源: Take screenshot of wpf popup window