📄 cformbase.pas
字号:
{-----------------------------------------------------------------------------
Unit Name: CFormBase
Author: hubdog(陈省)
Purpose: 窗体的基类
BeginDate: 2002-6-28
History:
发现不能使用默认窗体作为继承窗体的基类,否则继承会出问题
-----------------------------------------------------------------------------}
unit CFormBase;
{PUBDIST}
interface
uses
IWAppForm, IWApplication, IWTypes, Classes, Controls, Forms, CFrameMenu,
IWControl, IWCompLabel, IWExtCtrls, jpeg;
type
TformBase = class(TIWAppForm)
FrameMenu1: TFrameMenu;
iwbTitle: TIWLabel;
IWImage1: TIWImage;
public
end;
implementation
{$R *.dfm}
uses
ServerController;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -