本文介绍了在C#中的自定义位置上显示StartMenu的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好.
我有一个小问题.我想在自定义位置上显示win7的开始菜单,但我的代码没有执行任何操作.
Hi together.
I have a little problem. I want to show the startmenu of win7 on a custom position but my code did nothing.
<pre lang="cs">IntPtr StartMenu = FindWindow("DV2ControlHost", null);<br />
MoveWindow(StartMenu, x, y, width, height, true);<br />
ShowWindowAsync(StartMenu, 1);</pre><br />
推荐答案
这篇关于在C#中的自定义位置上显示StartMenu的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!