首页 > 编程 > Delphi > 正文

对Delphi控件的一点改良

2019-11-18 18:42:22
字体:
来源:转载
供稿:网友
 

我们都知道Delphi的很多控件有滚动条,可现在很流行浮动式滚动条。Delphi的控件并不具备这样的外观。现在流行FloatStyle套件。可是当我不具备该套又想拥有浮动式滚动条的控件该怎么办呢?

用commctrl单元中的InitializeFlatSB函数

下面看个例子很好玩的

unit Unit1;

interface

uses
  Windows, Messages, commctrl, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm1 = class(TForm)
    Button1: TButton;
    Memo1: TMemo;
    PRocedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
begin
InitializeFlatSB(Memo1.Handle);
end;

end.

想取消就调用UninitializeFlatSB好了。


上一篇:对Delphi控件的一点改良(二)

下一篇:Delphi的大Bug

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表
学习交流
热门图片

新闻热点

疑难解答

图片精选

网友关注