程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> delphi添加系統菜單,點擊新菜單沒有反應的問題

delphi添加系統菜單,點擊新菜單沒有反應的問題

編輯:Delphi

 

program Psysmenu; uses Forms, Sysmenu in '\SYSMENU.PAS' {Form1}; {$R *.RES} begin Application.CreateForm(TForm1, Form1); Application.Run; end. unit Sysmenu; interface uses SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,Forms, Dialogs; type TForm1 = class(TForm) procedure FormCreate(Sender: TObject); private procedure user_sysmenu(var msg:twmmenuselect); message wm_syscommand; public { Public declarations } end; var Form1: TForm1; implementation {$R *.DFM} procedure TForm1.user_sysmenu(var msg:TWMMENUSELECT); begin if msg.iditem=100 then showmessage(' 響應系統菜單!') { 也 可 以setwindowpos()來實現處於最前端功能} else inherited; { 作缺省處理,必須調用這一過程} end; procedure TForm1.FormCreate(Sender: TObject); var hmenu:integer; begin hmenu:=getsystemmenu(handle,false); {獲取系統菜單句柄} appendmenu(hmenu,MF_SEPARATOR,0,nil); appendmenu(hmenu,MF_STRING,100,'加入系統菜單'); {加入用戶菜單} end; end.

 

//出錯的主要原因是:缺少一句代碼message wm_syscommand;

//這句代碼的主要作用是:A window receives this message when the user chooses a commond from the window menu.

//而如果注釋了inherited ,則所有系統菜單都不能用。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved