📄 qyuyulistboxeditor.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 + -