Windows Phone没有完全截屏

Sri*_*ama 8 c# windows-phone-8

我在WP8中有一项任务

在WP8屏幕中用户点击(按钮左右?)时,我需要截取屏幕截图并发送到某个服务器

我发送成功但问题有时它不是将整个屏幕发送到我的服务器

这是我的代码:

private void LayoutRoot_MouseLeave(object sender, MouseEventArgs e)
    {
        TakeScreenShort();

    }  private void TakeScreenShort()
    {
        WriteableBitmap bmpCurrentScreenImage = new WriteableBitmap((int)this.ActualWidth, (int)this.ActualHeight);
        bmpCurrentScreenImage.Render(LayoutRoot, new MatrixTransform());
        bmpCurrentScreenImage.Invalidate();
        byte[] bytearray = null;
        using (MemoryStream ms = new MemoryStream())
        {
            WriteableBitmap wbitmp = new WriteableBitmap(bmpCurrentScreenImage);
            wbitmp.SaveJpeg(ms, wbitmp.PixelWidth, wbitmp.PixelHeight, 0, 100);
            ms.Seek(100, SeekOrigin.Current);
            bytearray = ms.GetBuffer();
        }
        string str = Convert.ToBase64String(bytearray);
        string json = JsonConvert.SerializeObject(new
        {
            id = 11544714,
            img = str,
            width = bmpCurrentScreenImage.PixelWidth,
            height = bmpCurrentScreenImage.PixelHeight,

        });

        string url = "http://178.188.9.96/imageservice/image.php";
        WebClient webClient = new WebClient();
        webClient.Headers["Content-Type"] = "application/json";
        webClient.Encoding = Encoding.UTF8;
        webClient.UploadStringCompleted += new UploadStringCompletedEventHandler(proxy_UploadStringCompleted);
        webClient.UploadStringAsync(new Uri(url), "POST", json, null);

    }

    private void proxy_UploadStringCompleted(object sender, UploadStringCompletedEventArgs e)
    {
        var response = e.Result;
        var jsonData = JsonConvert.DeserializeObject<RootObject>(response);
    }
Run Code Online (Sandbox Code Playgroud)

有时它采取全屏幕,有时它不会占据整个屏幕.

Ave*_*Ave 0

实际上,您无法以编程方式获取屏幕截图。奇怪的是,你已经成功地做到了这一点,你应该只获得几个(3 个左右)以确保获得全部。