博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
一个简单的菜单按钮的实现 (转)
阅读量:2501 次
发布时间:2019-05-11

本文共 1339 字,大约阅读时间需要 4 分钟。

一个简单的菜单按钮的实现 (转)[@more@]

  使用过速达2000的朋友都知道,其基本资料的浏览界面中有一种按钮,点击后会弹出一个和按钮对得很整齐的菜单.用制作一个类似的十分容易,代码如下:

unit MenuBtnVCL;

interface

uses

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

type

  TMenuBtn = class(TBitBtn)
  protected
  procedure DoEnter;overr;
  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.

 

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/10748419/viewspace-1007733/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/10748419/viewspace-1007733/

你可能感兴趣的文章
VNPY - CTA策略模块策略开发
查看>>
VNPY - 事件引擎
查看>>
MongoDB基本语法和操作入门
查看>>
学习笔记_vnpy实战培训day04_作业
查看>>
OCO订单(委托)
查看>>
学习笔记_vnpy实战培训day06
查看>>
回测引擎代码分析流程图
查看>>
Excel 如何制作时间轴
查看>>
股票网格交易策略
查看>>
matplotlib绘图跳过时间段的处理方案
查看>>
vnpy学习_04回测评价指标的缺陷
查看>>
ubuntu终端一次多条命令方法和区别
查看>>
python之偏函数
查看>>
vnpy学习_06回测结果可视化改进
查看>>
读书笔记_量化交易如何建立自己的算法交易01
查看>>
设计模式03_工厂
查看>>
设计模式04_抽象工厂
查看>>
设计模式05_单例
查看>>
设计模式06_原型
查看>>
设计模式07_建造者
查看>>