delphi 动态添加系统菜单
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了delphi 动态添加系统菜单相关的知识,希望对你有一定的参考价值。
delphi的 系统菜单 能在程序运行的过程中更改吗!不是在FormCreate的时候!而是因为某件事情触发后将 系统菜单 的某一项改变!比如新增加或者删除一个菜单项!或者在某一个菜单项的子菜单中增加一个子项!
可以的,你只需要把你在formcreate中的代码放到你的事件触发中 参考技术A 可以,直接用成员方法什么AddItem之类的就可以了Delphi在系统菜单中添加菜单项
unit dy219; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs; type TForm1 = class(TForm) procedure FormCreate(Sender: TObject); private procedure sysmenu(var msg: twmmenuselect);message wm_syscommand; { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation {$R *.dfm} procedure TForm1.FormCreate(Sender: TObject); var i: integer; begin i := getsystemmenu(handle,false); appendmenu(i,mf_separator,0,nil); appendmenu(i,mf_string,100,‘我的菜单(&E)‘); end; procedure TForm1.sysmenu(var msg: twmmenuselect); begin if msg.IDItem = 100 then showmessage(‘您选择了自己添加的菜单!‘) else inherited; end; end.
API函数
function GetSystemMenu(hWnd:HWND;bRevert:BOOL):HMENU;stdcall;
参数说明:
hWnd: 所要取得系统菜单句柄的目标窗口句柄。
bRevert:是否修改原始菜单。
返回一个HMENU型的菜单句柄。
通过GetSystemMenu得到句柄后可以使用AppendMenu函数为系统菜单增加一个菜单项,该函数原型为:
function AppendMenu(hMenu:HMENU;uFlags,uIDNewItem:UNIT;lpNewItem:Pchar):BOOL;stdcall;
参数说明:
hMenu: 用GetSystemMenu函数得到的菜单句柄。
uFlag,uIDNewItem:菜单唯一标志,弹出菜单唯一标志。
lpNewItem:菜单的类型。
容易出现问题:
缺少代码 message wm_syscommand;这句代码的主要作用是:A window receives this message when the user chooses a commond from the window menu.而如果注释了inherited ,则所有系统菜单都不能用。
http://blog.csdn.net/zang141588761/article/details/51992368
以上是关于delphi 动态添加系统菜单的主要内容,如果未能解决你的问题,请参考以下文章
Delphi:RzPageControl(pagecontrol)实现多标签的动态添加,切换,关闭
Delphi通过AppendMenu和DeleteMenu在系统菜单中添加删除菜单项
Delphi XE UniGUI ExtJS [7] Delhi 动态添加 ClientEvents.ExtEvents 事件