qyuyulistboxreg.pas

来自「修改过样式的listbox,跟原来的listbox样子不一样」· PAS 代码 · 共 20 行

PAS
20
字号
unit QYuyuListBoxReg;

interface

uses
  SysUtils,Classes,Graphics ,DesignEditors, DesignIntf, QYuyuListBox, QYuyuListBoxEditor;

procedure Register;

implementation

procedure Register;
begin
  RegisterComponents('Yuyu',[TYuyuListBox]);
  RegisterPropertyEditor(TypeInfo(TColor),TYuyulistbox,'FontColor',TYuyuListBoxEditor);
  RegisterPropertyEditor(Typeinfo(TColor),TYuyuListBox,'BackGroundColor',TYuyuListBoxEditor1);
end;

end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?