如何设置应用程序的任务栏图标在Windows 7-qt,windows-7,pyqt

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何设置应用程序的任务栏图标在Windows 7-qt,windows-7,pyqt相关的知识,希望对你有一定的参考价值。

参考技术A 1.
我已经找到了答案,挖后。
在Windows
7中,任务栏是不是为“应用程序窗口”本身,它是一个“应用程序用户模型”。例如,如果您有应用程序运行的几个不同的实例,每个实例都有自己的图标,然后将他们全部下一个任务栏图标分组。试探法来决定不同的情况下是否应该进行分组或没有,在这种情况下,它决定一切由Pythonw.exe托管应Pythonw.exe图标下进行分组。
正确的解决办法是Pythonw.exe来告诉Windows,它承载的其他应用程序。也许是Python中的未来版本将做到这一点。或者,您也可以添加一个注册表项来告诉Windows
Pythonw.exe仅仅是一台主机,而不是在自己的权利的申请。请参阅MSDN的AppUserModelIDs。
或者,您在Windows从Python的电话,明确地告诉Windows的正确AppUserModelID是这个过程:
  import
ctypes
  myappid
=
'mycompany.myproduct.subproduct.version'
#
arbitrary
string
  ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID(myappid)
  2.
您必须设定AppUserModelID之前您的应用程序显示任何GUI。如果你需要访问其他Windows
7的功能,你可以看看Q7Goodies这是一个Qt附加为Windows
7与PyQt的绑定。

如何在 Windows 7 上删除 Java 程序的标题栏和任务栏图标?

【中文标题】如何在 Windows 7 上删除 Java 程序的标题栏和任务栏图标?【英文标题】:How can I remove titlebar and taskbar icons of Java programs on Windows 7? 【发布时间】:2012-02-14 04:37:09 【问题描述】:

我编写了一个小应用程序,它可以在 C# 中禁用 Windows 操作系统 的所有窗口的标题栏和任务栏图标。代码如下:

using System;
using System.Runtime.InteropServices;
using System.Windows.Forms;

namespace IconKiller

    class Program
    
        /// Import the needed Windows-API functions:
        // ... for enumerating all running desktop windows
        [DllImport("user32.dll")]
        static extern bool EnumDesktopWindows(IntPtr hDesktop, EnumDesktopWindowsDelegate lpfn, IntPtr lParam);
        private delegate bool EnumDesktopWindowsDelegate(IntPtr hWnd, int lParam);

        // ... for loading an icon
        [DllImport("user32.dll")]
        static extern IntPtr LoadImage(IntPtr hInst, string lpsz, uint uType, int cxDesired, int cyDesired, uint fuLoad);

        // ... for sending messages to other windows
        [DllImport("user32.dll")]
        static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, int wParam, IntPtr lParam);


        /// Setup global variables
        // Pointer to empty icon used to replace all other application icons
        static IntPtr m_pIcon = IntPtr.Zero;

        // Windows API standard values
        const int IMAGE_ICON = 1;
        const int LR_LOADFROMFILE = 0x10;
        const int WM_SETICON = 0x80;
        const int ICON_SMALL = 0;        

        static void Main(string[] args)
        
            // Load the empty icon 
            string strIconFilePath = @"blank.ico";
            m_pIcon = LoadImage(IntPtr.Zero, strIconFilePath, IMAGE_ICON, 16, 16, LR_LOADFROMFILE);

            // Setup the break condition for the loop
            int counter = 0;
            int max = 10 * 60 * 60;

            // Loop to catch new opened windows            
            while (counter < max)
            
                // enumerate all desktop windows
                EnumDesktopWindows(IntPtr.Zero, new EnumDesktopWindowsDelegate(EnumDesktopWindowsCallback), IntPtr.Zero);
                counter++;
                System.Threading.Thread.Sleep(100);
            

            // ... then restart application
            Application.Restart();
        

        private static bool EnumDesktopWindowsCallback(IntPtr hWnd, int lParam)
        
            // Replace window icon
            SendMessage(hWnd, WM_SETICON, ICON_SMALL, m_pIcon);

            return true;
        
    

此代码似乎适用于本机 Windows 应用程序。我现在唯一的问题是,Java 显然使用其应用程序图标的不同实例来显示在任务栏中。这意味着我的小应用程序删除了 Java 程序标题栏中的图标,但没有删除任务栏中的图标(Netbeans 就是一个很好的例子)。

如何解决这个问题?是否有可能通过 JVM 向这些程序传递消息,类似于我在 windows API 中使用的技巧,在运行 Java 应用程序时调用 JFrame.setIconImage() 或类似的东西?

编辑:我不仅限于 C#,我非常愿意在 java 中编写类似“帮助”应用程序的东西,如果有必要,我会在我的主应用程序中执行。

【问题讨论】:

我很好奇...你为什么要去掉那些提供简单视觉区分应用程序的方法的图标 你试过了吗? ***.com/questions/50398/… @Diego 那会有什么帮助? 任务栏上出现的不想换图标的窗口有窗口文字theAwtToolkitWindow 【参考方案1】:

这是你要找的吗?:

[DllImport("user32.dll")]
        static extern bool EnumDesktopWindows(IntPtr hDesktop, EnumDesktopWindowsDelegate lpfn, IntPtr lParam);
        private delegate bool EnumDesktopWindowsDelegate(IntPtr hWnd, int lParam);

[DllImport("user32.dll")]
        private static extern int GetWindowText(IntPtr hWnd, StringBuilder title, int size);
        [DllImport("user32.dll")]
        private static extern bool IsWindowVisible(IntPtr hWnd);

[DllImport("user32.dll")]
        static extern IntPtr LoadImage(IntPtr hInst, string lpsz, uint uType, int cxDesired, int cyDesired, uint fuLoad);

[DllImport("user32.dll")]
        static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, IntPtr wParam, IntPtr lParam);

static IntPtr m_pIcon = IntPtr.Zero;

static string[] m_astrFilter = new string[]  "Start", "Program Manager" ;

        static void Main(string[] args)
        

        string strIconFilePath = @"H:\IconEmpty.ico";
        const int IMAGE_ICON = 1;
        const int LR_LOADFROMFILE = 0x10;
        m_pIcon = LoadImage(IntPtr.Zero, strIconFilePath, IMAGE_ICON, 0, 0, LR_LOADFROMFILE);
        while (true) 
         
        EnumDesktopWindows(IntPtr.Zero, new EnumDesktopWindowsDelegate(EnumDesktopWindowsCallback), IntPtr.Zero);                       System.Threading.Thread.Sleep(100); 
         
                Console.ReadKey();
        

private static bool EnumDesktopWindowsCallback(IntPtr hWnd, int lParam)
        

        StringBuilder title = new StringBuilder(256);
            GetWindowText(hWnd, title, 256);
            string strTitle = title.ToString();
        bool bVisible = IsWindowVisible(hWnd);

if (bVisible && // ... visible
               !String.IsNullOrEmpty(strTitle) && // ... has title
               !m_astrFilter.Contains(strTitle)) // ... not in filter list
            

        SendMessage(hWnd, 0x80, IntPtr.Zero, m_pIcon);
        

            return true;
        

【讨论】:

【参考方案2】:

您可以使用Windows API Code Pack 覆盖任务栏图标。 Here are some examples。

【讨论】:

【参考方案3】:

问题在于使用EnumDesktopWindows 而不是EnumWindows。以下代码在我的电脑上运行良好:

using System;
using System.Runtime.InteropServices;

namespace IconKiller

    class Program
    
        /// Import the needed Windows-API functions:
        // ... for enumerating all running desktop windows
        [DllImport("user32.dll")]
        static extern bool EnumWindows(EnumDesktopWindowsDelegate lpfn, IntPtr lParam);
        private delegate bool EnumDesktopWindowsDelegate(IntPtr hWnd, int lParam);

        // ... for loading an icon
        [DllImport("user32.dll")]
        static extern IntPtr LoadImage(IntPtr hInst, string lpsz, uint uType, int cxDesired, int cyDesired, uint fuLoad);

        // ... for sending messages to other windows
        [DllImport("user32.dll")]
        static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, int wParam, IntPtr lParam);


        /// Setup global variables
        // Pointer to empty icon used to replace all other application icons
        static IntPtr m_pIcon = IntPtr.Zero;

        // Windows API standard values
        const int IMAGE_ICON = 1;
        const int LR_LOADFROMFILE = 0x10;
        const int WM_SETICON = 0x80;
        const int ICON_SMALL = 0;

        static void Main(string[] args)
        
            // Load the empty icon 
            string strIconFilePath = @"C:\clicknrun.ico";
            m_pIcon = LoadImage(IntPtr.Zero, strIconFilePath, IMAGE_ICON, 16, 16, LR_LOADFROMFILE);

            // Setup the break condition for the loop
            int counter = 0;
            int max = 10 * 60 * 60;

            // Loop to catch new opened windows            
            while (counter < max)
            
                // enumerate all desktop windows
                EnumWindows((EnumDesktopWindowsCallback), IntPtr.Zero);
                counter++;
                System.Threading.Thread.Sleep(100);
            

            // ... then restart application
            Console.WriteLine("done");
            Console.ReadLine();
        

        private static bool EnumDesktopWindowsCallback(IntPtr hWnd, int lParam)
        
            // Replace window icon
            SendMessage(hWnd, WM_SETICON, ICON_SMALL, m_pIcon);

            return true;
        
    

【讨论】:

当然,您需要进行一些小的修改以使代码正确,但您明白了... 枚举系统所有窗口是不是太慢了? @remio 它在我的电脑上运行得非常快,这就是他想要做的......除非你有更有效的解决方案。

以上是关于如何设置应用程序的任务栏图标在Windows 7-qt,windows-7,pyqt的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Windows 7 上删除 Java 程序的标题栏和任务栏图标?

Windows任务栏设置

Windows 7 的任务栏上的 Delphi 表单图标模糊(启用 MainFormOnTaskbar)

电脑任务栏怎么隐藏

win10任务栏uwp应用没有图标,怎么解决

如何为 Win32 应用程序设置任务栏图标?