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

📄 lcd_ped.pas

📁 一个很好的DELPHI界面控件
💻 PAS
字号:
{******************************************************************************}
{                                                                              }
{  TLCDLabel v1.3 - Property Editor for the Custom font filename.              }
{  (c) 1998 - Peter Czidlina                                                   }
{                                                                              }
{******************************************************************************}

unit LCD_Ped;

interface

uses
  Forms, Dialogs, StdCtrls, DsgnIntF, TypInfo;

type
  TFileNameProperty = class(TStringProperty)
    function  GetAttributes : TPropertyAttributes; override;
    procedure Edit; override;
  end;

implementation

function TFileNameProperty.GetAttributes : TPropertyAttributes;
begin
  Result := [paDialog];
end;

procedure TFileNameProperty.Edit;
var
  FileOpenReq : TOpenDialog;
begin
  FileOpenReq := TOpenDialog.Create(Application);
  try
    FileOpenReq.Title := 'Open custom font file';
    FileOpenReq.Filter:= 'Font files|*.fnt';
    if FileOpenReq.Execute then
      SetStrValue(FileOpenReq.FileName);
  finally
    FileOpenReq.Free;
  end;
end;

end.

⌨️ 快捷键说明

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