有没有办法让我的应用程序将其图标推送给其他应用程序

本文关键字:应用程序 图标 其他 我的 有没有 | 更新日期: 2023-09-27 18:23:44

我有一个WPF应用程序,它启动另一个应用程序,我希望我的应用程序更改第二个应用程序的图标。我可以使用GetWindowTextSetWindowText来更改标题。图标也可以这样做吗?

更新

我无法控制第二个应用程序。

有没有办法让我的应用程序将其图标推送给其他应用程序

更改另一个应用程序的窗口标题:

Win32 API函数和常量的定义:

[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]
public static extern bool SetWindowText(IntPtr hwnd, String lpString);
[DllImport("user32.dll")]
public static extern int SendMessage(IntPtr hwnd, int message, int wParam, IntPtr lParam);
private const int WM_SETICON = 0x80;
private const int ICON_SMALL = 0;
private const int ICON_BIG = 1;

用法:

Process process = Process.Start("notepad");
// If you have just started a process and want to use its main window handle,
// consider using the WaitForInputIdle method to allow the process to finish starting,
// ensuring that the main window handle has been created.
// Otherwise, an exception will be thrown.
process.WaitForInputIdle();
SetWindowText(process.MainWindowHandle, "Hello!");
Icon icon = new Icon(@"C:'Icon'File'Path.ico");
SendMessage(process.MainWindowHandle, WM_SETICON, ICON_BIG, icon.Handle);

在Windows窗体中,您将使用

Icon ico = Icon.ExtractAssociatedIcon(@"C:'WINDOWS'system32'notepad.exe");
this.Icon = ico;

所以我猜WPF也会类似。