請放一個TPopupMenu物件
選單內容
語法:
object N1: TMenuItem
Caption = '記事本'
OnClick = N1Click
end
object N2: TMenuItem
Caption = '檔案總管'
OnClick = N2Click
end
object N3: TMenuItem
Caption = '-'
end
object N4: TMenuItem
Caption = '離開'
OnClick = N4Click
end
Unit1.dfm內容
語法:
object Form1: TForm1
Left = 192
Top = 114
Width = 696
Height = 480
Caption = 'Form1'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
OnActivate = FormActivate
OnClose = FormClose
PixelsPerInch = 96
TextHeight = 13
object PopupMenu1: TPopupMenu
Left = 72
Top = 48
object N1: TMenuItem
Caption = #35352#20107#26412
OnClick = N1Click
end
object N2: TMenuItem
Caption = #27284#26696#32317#31649
OnClick = N2Click
end
object N3: TMenuItem
Caption = '-'
end
object N4: TMenuItem
Caption = #38626#38283
OnClick = N4Click
end
end
end