unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Menus;
type
TForm1 = class(TForm)
procedure FormCreate(Sender: TObject);
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
var
MyMenu: TMainMenu;
Item: TMenuItem;
procedure TForm1.FormCreate(Sender: TObject);
var
Itemd: TMenuItem;
begin
MyMenu := TMainMenu.Create(Self);
MyMenu.AutoHotkeys := maManual;
MyMenu.AutoLineReduction := maAutomatic; {默認會自動隱藏多余的分割線}
//MyMenu.AutoLineReduction := maManual; {設定為手動會顯示所有分割線}
Self.Menu := MyMenu;
Item := TMenuItem.Create(MyMenu);
Item.Caption := 'AA';
MyMenu.Items.Add(Item);
Itemd := TMenuItem.Create(MyMenu);
Itemd.Caption := 'A&1';
Item.Add(Itemd);
Itemd := TMenuItem.Create(MyMenu);
Itemd.Caption := '-'; {這是分割線}
Item.Add(Itemd);
Itemd := TMenuItem.Create(MyMenu);
Itemd.Caption := '-'; {這是分割線}
Item.Add(Itemd);
Itemd := TMenuItem.Create(Item);
Itemd.Caption := 'A&2';
Item.Add(Itemd);
Itemd := TMenuItem.Create(MyMenu);
Itemd.Caption := '-'; {這是分割線}
Item.Add(Itemd);
end;
end.
效果圖: