程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> 一個簡單的菜單按鈕的實現

一個簡單的菜單按鈕的實現

編輯:Delphi

      使用過速達2000的朋友都知道,其基本資料的浏覽界面中有一種按鈕,點擊後會彈出一個和按鈕對得很整齊的菜單.用Delphi制作一個類似的控件十分容易,代碼如下:

unit MenuBtnVCL;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  Buttons, CommCtrl,
  ExtCtrls,Menus;

type
  TMenuBtn = class(TBitBtn)
  protected
    procedure DoEnter;override;
    procedure DoExit;override;
    { Protected declarations }
  public
    constructor Create(AOwner: TComponent); override;
    procedure Click; override;
    { Public declarations }
  published
    { AL: }
    { Published declarations }
  end;

procedure Register;

implementation

procedure Register;
begin
  RegisterComponents(Samples, [TMenuBtn]);
end;


constructor TMenuBtn.Create(AOwner: TComponent);
begin
   inherited Create(AOwner);
   layout:=blGlyphRight;
   Font.Charset := GB2312_CHARSET;
   Font.Color := clWindowText;
   Font.Height := -12;
   Font.Name := 宋體;
end;

procedure TMenuBtn.Click;
var tmp:TPoint;
begin
  inherited Click;

   if Assigned(PopUpMenu) then
   begin
     { calc where to put menu }
     tmp := ClientToScreen(Point(0, Height));
     PopUpMenu.Popup(tmp.X, tmp.Y);
   end;
end;

procedure TMenuBtn.DoEnter;
begin
   Font.Style := [fsBold];
   inherited DoEnter;
end;

procedure TMenuBtn.DoExit ;
begin
   Font.Style := [];
   inherited DoExit;
end;

end.

     

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