我目前使用的Windows 7 API代码包为应用程序我在C#中的编码。 目前,我知道如何绘制窗口区域或控制到缩略图预览的一部分:
TaskbarManager.Instance.TabbedThumbnail.SetThumbnailClip((new WindowInteropHelper(this)).Handle, new System.Drawing.Rectangle((int)v.X, (int)v.Y, (int)pictureBox1.RenderSize.Width, (int)pictureBox1.RenderSize.Height));
不过,我想画一个位图图像转换成缩略图。 有它的方法,但它不记录非常好。 的方法来设置位图I:
System.Drawing.Bitmap bmptest = new System.Drawing.Bitmap(ms);
tb.SetImage(bmptest)
这工作,但它仍然没有设置(bmptest)位图的缩略图预览。
我想知道是否有任何人在这里谁拥有见识到Windows 7 API代码包,如果他们能请点我与如何在缩略图预览设置位图图像的正确方向。