为什么窗口小于实际宽度?

时间:2019-04-11 05:40:58

标签: c# wpf window size

我想要捕获窗口,但是实际窗口大小似乎小于该图。

这是代码

<Window x:Class="FileRead.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Width="620" Height="340" >
<Grid>

    <StackPanel>
        <StackPanel Orientation="Horizontal">
            <Button x:Name="ReadImageButton" Width="100" Height="30" Margin="10" Click="ReadImage_Click">
                LoadImage
            </Button>

            <Button x:Name="ReadTextButton" Width="100" Height="30" Margin="10" Click="ReadText_Click">
                LoadText
            </Button>

            <Button x:Name="CaptueScreenButton" Width="80" Height="30" Margin="10" Click="CaptueScreenButton_Click">
                ScreenCapture
            </Button>

            <Button x:Name="CaptuerWindowButton" Width="80" Height="30" Margin="10" Click="CaptuerWindowButton_Click">
                WindowCapture
            </Button>

我找不到问题。

private void CaptuerWindowButton_Click(object sender, RoutedEventArgs e)
{
    int width = (int)this.ActualWidth;
    int height = (int)this.ActualHeight;

    Point point = this.PointToScreen(new Point(0, 0)); 

    CheckLable.Content = string.Format("{0} / {1}", this.Width, this.ActualWidth);

    using (Bitmap bmp = new Bitmap(width, height))
    {
        using (Graphics gr = Graphics.FromImage(bmp))
        {
            gr.CopyFromScreen( (int)point.X, (int)this.Top, 0, 0, bmp.Size);

        }


        bmp.Save(ImagePath + "/WindowCapture.png", ImageFormat.Png);
    }
}

结果图片result image

总相差约15点。:https://i.stack.imgur.com/1YTvy.png

请帮助我。

enter image description here

1 个答案:

答案 0 :(得分:0)

导致问题的原因是窗口的大小包括OS绘制的区域,称为“非客户区域”,通常包括框架,边框,投影效果。而且您的计算没有考虑到这一点。正确的代码会喜欢

    var clientTopLeft = this.PointToScreen(new System.Windows.Point(0, 0));
    // calculate the drop show effect offset. 
    var shadowOffset = SystemParameters.DropShadow ? clientTopLeft.X - Left - 
        ((WindowStyle == WindowStyle.None && ResizeMode < ResizeMode.CanResize) ? 0 : SystemParameters.BorderWidth) : 0;

    // exclude left and right drop shadow area
    int width = (int)(Width - 2 * shadowOffset);
    // exclude bottom drop shadow area
    int height = (int)(Height - shadowOffset);

    using (Bitmap bmp = new Bitmap(width, height))
    {
        using (Graphics gr = Graphics.FromImage(bmp))
        {
            gr.CopyFromScreen((int)(Left + shadowOffset),
                (int)Top, 0, 0, bmp.Size);
        }

        bmp.Save("WindowCapture.png");
    }
相关问题