Rendering not working with MediaElement windows RT
问题 I need to take thumbnail from Video playing with MediaElement For this i learn there is RenderTargetBitmap in windows 8.1 API RenderTargetBitmap a = new RenderTargetBitmap(); await a.RenderAsync(myMedia); thumb.Source = a; and second way i got with help of WinRTXamlToolkit.Composition toolkit which do rendring with WriteableBitmapRenderExtensions class WriteableBitmap w = await WriteableBitmapRenderExtensions.Render(myMedia); thumb.Source = w; Both these methods are working with all UIElement