scheckbox.pas

来自「AlphaControls是一个Delphi标准控件的集合」· PAS 代码 · 共 31 行

PAS
31
字号
unit sCheckbox;

{$I sDefs.inc}

interface

uses
  Windows, Messages, Classes, Graphics, Controls, Forms, ExtCtrls,
  sStyleUtil, sCheckedControl, sConst;

type
  TsCheckBox = class(TsCheckedControl)
  public
    constructor Create (AOwner: TComponent); override;
  published
  end;

implementation

uses sPanel;
{ TsCheckBox }

constructor TsCheckBox.Create(AOwner: TComponent);
begin
  inherited Create(AOwner);
  sStyle.COC := COC_TsCheckBox;
end;

end.

⌨️ 快捷键说明

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