📄 mplayer.ico
字号:
unit Status;
interface
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
ExtCtrls;
type
TStatusBox = class(TForm)
StatusPanel: TPanel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
StatusBox: TStatusBox;
implementation
{$R *.DFM}
begin
{ Since the status box is displayed before the main screen is created,
the status box must be created before the main screen. }
StatusBox := TStatusBox.Create(Application);
StatusBox.Show;
StatusBox.StatusPanel.Caption := 'One Moment Please';
Application.ProcessMessages;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -