Tomar captura de pantalla Webbrowser en wp7

Tengo un código para tomar una captura de pantalla en wp7.

int Width = (int)LayoutRoot.RenderSize.Width;
int Height = (int)LayoutRoot.RenderSize.Height;

// Write the map control to a WwriteableBitmap
WriteableBitmap screenshot = new WriteableBitmap(LayoutRoot, new TranslateTransform());

using (MemoryStream ms = new MemoryStream())
{
    // Save it to a memory stream
    screenshot.SaveJpeg(ms, Width, Height, 0, 100);

    // Take saved memory stream and put it back into an BitmapImage
    BitmapImage img = new BitmapImage();
    img.SetSource(ms);

    // Assign to our image control
    ImageFromMap.Width = img.PixelWidth;
    ImageFromMap.Height = img.PixelHeight;
    ImageFromMap.Source = img;

    // Cleanup
    ms.Close();
}

En mi pantalla tengo un navegador web para mostrar contenido en internet. cuando presione el botón Tomar. Puedo tomar una foto de la pantalla, pero el área del navegador web muestra un rectángulo blanco.

Respuestas a la pregunta(1)

Su respuesta a la pregunta