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

📄 d_lmddbdiagram1.pas

📁 delphi 运行期间窗体设计
💻 PAS
字号:
unit d_LMDDBDiagram1;

interface

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

type
  TdlgItemProps = class(TForm)
    Memo1: TMemo;
    Button1: TButton;
    Button2: TButton;
  private
    function GetLines: TStrings;
    { Private declarations }
  public
    { Public declarations }
    function Execute: Boolean;
    property Lines: TStrings read GetLines;
  end;

implementation

{$R *.dfm}

{ TdlgItemProps }

function TdlgItemProps.Execute: Boolean;
begin
  Result := (ShowModal = mrOk);
end;

function TdlgItemProps.GetLines: TStrings;
begin
  Result := Memo1.Lines;
end;

end.

⌨️ 快捷键说明

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