本文介绍了如何显示"NotifyIconOverflowWindow"窗户?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在某些程序中显示NotifyIconOverflowWindow
,但我尝试这样:
I want to show NotifyIconOverflowWindow
in some program, and I tried to like this:
pop = FindWindow((LPCWSTR)L"NotifyIconOverflowWindow", (LPCWSTR)"");
ShowWindow(pop, SW_SHOWNORMAL);
但是,如果我不单击任务栏,首先会弹出NotifyIconOverflowWindow.我的程序创建的NotifyIconOverflowWindow
中没有任何内容.
But if I do not click taskbar and popup NotifyIconOverflowWindow at first. There is nothing in my NotifyIconOverflowWindow
created by my program.
推荐答案
pop = FindWindow(L"NotifyIconOverflowWindow", NULL);
ShowWindow(pop, SW_SHOWNORMAL);
停止投射!
Stop casting!
这篇关于如何显示"NotifyIconOverflowWindow"窗户?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!