gpt4 book ai didi

c# - 如何添加动态文本作为任务栏图标覆盖?

转载 作者:行者123 更新时间:2023-12-04 02:23:58 29 4
gpt4 key购买 nike

我正在尝试将带有文本的任务栏图标覆盖添加到 Windows7 应用程序图标,我确实设法添加了小覆盖但无法添加文本。

有人知道如何添加动态文本作为任务栏图标覆盖吗?

使用:WPF 和 C#

最佳答案

您只能添加一个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;

关于c# - 如何添加动态文本作为任务栏图标覆盖?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2292506/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com