📄 intbox.pas
字号:
unit IntBox;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, BusinessSkinForm, bsSkinCtrls, bsSkinBoxCtrls, Mask;
type
TFrmIntBox = class(TForm)
bsfForm: TbsBusinessSkinForm;
Button1: TbsSkinButton;
Button2: TbsSkinButton;
ComboBox1: TbsSkinComboBox;
Edit1: TbsSkinEdit;
bsSkinLabel1: TbsSkinLabel;
bsSkinLabel2: TbsSkinLabel;
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
FrmIntBox: TFrmIntBox;
implementation
{$R *.dfm}
procedure TFrmIntBox.FormCreate(Sender: TObject);
begin
ComboBox1.ItemIndex:=0;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -