TMainMenu 类[三] - 手动建立菜单(6) : 更换菜单

unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, Menus, StdCtrls;

type
  TForm1 = class(TForm)
    Button1: TButton;
    Button2: TButton;
    procedure FormCreate(Sender: TObject);
    procedure Button1Click(Sender: TObject);
    procedure Button2Click(Sender: TObject);
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

var
  MyMenu1,MyMenu2: TMainMenu;
  Item: TMenuItem;


procedure TForm1.FormCreate(Sender: TObject);
begin
  {建立第一个菜单}
  MyMenu1 := TMainMenu.Create(Self);
  MyMenu1.AutoHotkeys := maManual;

  Item := TMenuItem.Create(MyMenu1);
  Item.Caption := 'AA';
  MyMenu1.Items.Add(Item);

  Item := TMenuItem.Create(MyMenu1);
  Item.Caption := 'BB';
  MyMenu1.Items.Add(Item);

  Item := TMenuItem.Create(MyMenu1);
  Item.Caption := 'CC';
  MyMenu1.Items.Add(Item);


  {建立第二个菜单}
  MyMenu2 := TMainMenu.Create(Self);
  MyMenu2.AutoHotkeys := maManual;

  Item := TMenuItem.Create(MyMenu2);
  Item.Caption := 'XX';
  MyMenu2.Items.Add(Item);

  Item := TMenuItem.Create(MyMenu2);
  Item.Caption := 'YY';
  MyMenu2.Items.Add(Item);

  Item := TMenuItem.Create(MyMenu2);
  Item.Caption := 'ZZ';
  MyMenu2.Items.Add(Item);


  Self.Menu := nil; {当前 Form 没有指向任何一个菜单}
end;


procedure TForm1.Button1Click(Sender: TObject);
begin
  Self.Menu := MyMenu1; {指向第一个菜单}
end;


procedure TForm1.Button2Click(Sender: TObject);
begin
  Self.Menu := MyMenu2; {指向第二个菜单}
end;

end.

 
 
 
 
 

 

 

  
效果图:

26153723_kbJV.png

转载于:https://my.oschina.net/hermer/blog/320447

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值