3

テキスト付きのタスクバーアイコンオーバーレイをwindows7アプリケーションアイコンに追加しようとしていますが、小さなオーバーレイを追加することはできましたが、テキストを追加できませんでした。

動的テキストをタスクバー アイコン オーバーレイとして追加する方法を知っている人はいますか?

使用: WPF および C#

4

1 に答える 1

6

追加できるのは、Imageそれを作成する必要があるためです。

    RectangleF rectF = new RectangleF(0, 0, 40, 40);
    Bitmap bitmap = new Bitmap(40, 40, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
    Graphics g = Graphics.FromImage(bitmap);
    g.FillRectangle(System.Drawing.Brushes.White, 0, 0, 40, 40);
    g.DrawString("5", new Font("Arial", 25), System.Drawing.Brushes.Black, new PointF(0, 0));

    IntPtr hBitmap = bitmap.GetHbitmap();

    ImageSource wpfBitmap =
        Imaging.CreateBitmapSourceFromHBitmap(
            hBitmap, IntPtr.Zero, Int32Rect.Empty,
            BitmapSizeOptions.FromEmptyOptions());

    TaskbarItemInfo.Overlay = wpfBitmap;
于 2010-02-18T23:04:03.760 に答える