S
sharkHun
Unregistered / Unconfirmed
GUEST, unregistred user!
我的意思是想要在button click 你show出系统菜单,系统菜单能show出,<br>但当我click系统菜单时,比如[关闭],什么都没有发生,即点击系统<br>菜单项无效,why?<br><br>代码如下:<br><br>var<br> CursorPos : TPoint;<br> HSysMenu : integer;<br>begin<br> GetCursorPos(CursorPos);<br> HSysMenu := GetSystemMenu(Form1.handle,False);<br> TrackPopUpMenu(HSysMenu,TPM_LEFTALIGN,CursorPos.x,CursorPos.y,0,Form1.handle,nil); <br>end;