graph.pas

来自「themeengine6源码」· PAS 代码 · 共 39 行

PAS
39
字号
unit graph;

interface

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

type
  TfrmGraph = class(TForm)
    SeSkinForm1: TTeForm;
    TePenWidthBox1: TTePenWidthBox;
    TePenStyleBox1: TTePenStyleBox;
    TeBrushStyleBox1: TTeBrushStyleBox;
    TeAlphaValueBox1: TTeAlphaValueBox;
    TeGradientBox1: TTeGradientBox;
    TePenWidthList1: TTePenWidthList;
    TePenStyleList1: TTePenStyleList;
    TeBrushStyleList1: TTeBrushStyleList;
    TeAlphaValueList1: TTeAlphaValueList;
    TeGradientList1: TTeGradientList;
    TeButton1: TTeButton;
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  frmGraph: TfrmGraph;

implementation

uses Main;

{$R *.DFM}

end.

⌨️ 快捷键说明

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