⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qyuyulistboxeditor.pas

📁 修改过样式的listbox,跟原来的listbox样子不一样
💻 PAS
字号:
unit QYuyuListBoxEditor;

interface

uses
  SysUtils,Classes, dialogs, QYuyuListBox, DesignEditors,DesignIntf, VCLEditors;

type
  TYuyuListBoxEditor = class(TColorproperty)
  public
    function GetAttributes: TPropertyAttributes ;override;
    procedure EDIT; override;
  end;

type
  TYuyuListBoxEditor1 = class(TColorproperty)
  public
    function GetAttributes: TPropertyAttributes;override;
    procedure EDit;override;
  end;

implementation

procedure TYuyuListBoxEditor.EDIT;
begin
  inherited;
end;

function TYuyuListBoxEditor.GetAttributes: TPropertyAttributes ;
begin
  RESULT := [paDialog];
end;

{ TYuyuListBoxEditor1 }

procedure TYuyuListBoxEditor1.EDit;
begin
  inherited;
end;

function TYuyuListBoxEditor1.GetAttributes: TPropertyAttributes;
begin
  Result :=[padialog];
end;

end.

⌨️ 快捷键说明

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