fwrbb.pas

来自「服务信息管理系统」· PAS 代码 · 共 43 行

PAS
43
字号
unit fwrbb;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, ExtCtrls, StdCtrls, ComCtrls, ToolWin;

type
  Tfrmfwrbb = class(TForm)
    CoolBar1: TCoolBar;
    ToolBar1: TToolBar;
    ToolButton1: TToolButton;
    ToolButton2: TToolButton;
    Button1: TButton;
    procedure CreateParams(var Params: TCreateParams);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  frmfwrbb: Tfrmfwrbb;

implementation

uses khhfb;

{$R *.dfm}

procedure Tfrmfwrbb.CreateParams(var Params: TCreateParams);
begin
  inherited createparams(params);
  with params do
    begin
      style := style and (not ws_caption);
      style := style or ws_popup or ws_thickframe or ws_clipchildren;
    end;
end;

end.

⌨️ 快捷键说明

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