• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Delphi中给活动控件画上矩形边框

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
  {private
    procedure DrawFocusRectangle(sender: TObject);
  public
    { Public declarations }
  end;}

var
  Form1: TForm1;
  FocusRectangle: TShape;

implementation

{$R *.dfm}

//窗体创建事件中加如下代码
procedure
TForm1.FormCreate(Sender: TObject); begin FocusRectangle := TShape.Create(Self); FocusRectangle.Shape := stRectangle; FocusRectangle.Visible := False; FocusRectangle.Brush.Style := bsClear; FocusRectangle.Pen.Style := psDot; FocusRectangle.Pen.Color := clRed; FocusRectangle.Pen.Width := 1; {在Screen的OnActiveControlChange事件中处理}
Screen.OnActiveControlChange :
= DrawFocusRectangle; end; procedure TForm1.DrawFocusRectangle; begin with FocusRectangle do begin Parent := Screen.ActiveControl.Parent; Top := Screen.ActiveControl.Top -2 ; Height := Screen.ActiveControl.Height + 4; Left := Screen.ActiveControl.Left - 2; Width := Screen.ActiveControl.Width + 4; Visible := True; end; end; procedure TForm1.FormDestroy(Sender: TObject); begin Screen.OnActiveControlChange := nil; FocusRectangle.Free; end;

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Delphi中record和packedrecord的区别发布时间:2022-07-18
下一篇:
Delphi纯代码连SQLite数据库,同时支持数据库的加密解密发布时间:2022-07-18
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap