I believe that you need to configure the preview as described here (in the Preview Custom Settings section). What uses the Windows API Code Code for the Microsoftยฎ .NET Framework .
An example can be found here , but it looks like this:
TabbedThumbnail preview = new TabbedThumbnail(parentForm.Handle, childForm.Handle); TaskbarManager.Instance.TabbedThumbnail.AddThumbnailPreview(preview); preview.TabbedThumbnailBitmapRequested += (o, e) => { Bitmap bmp = new Bitmap(width, height); // draw custom bitmap... e.SetImage(bmp); e.Handled = true; };
Another example: here , which says:
The CustomWindowsManager class provides abstracts for previewing custom thumbnails and real-time previews (peeks), including tools for receiving notifications when the preview bitmap is requested by the Desktop Window Manager (DWM) and automatically capture the preview bitmap window.
The download link for this code is here , which includes the CustomWindowsManager class. This seems to provide a live preview.
source share