⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ufrmshowcarinfo4oil.pas

📁 a voice guide client ,it is the second part of voice guide center
💻 PAS
字号:
unit uFrmShowCarInfo4Oil;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, cxLookAndFeelPainters, StdCtrls, cxButtons, Grids, ValEdit;

type
  TFrmShowCarInfo4Oil = class(TForm)
    Label1: TLabel;
    lblCarCode: TLabel;
    lblCarID: TLabel;
    vleCarInfo: TValueListEditor;
    ListBox1: TListBox;
    lblCompanyCars: TLabel;
    btnSave: TcxButton;
    btnCancel: TcxButton;
    procedure FormCreate(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  FrmShowCarInfo4Oil: TFrmShowCarInfo4Oil;

implementation

{$R *.dfm}

procedure TFrmShowCarInfo4Oil.FormCreate(Sender: TObject);
begin
  Font.Name := '宋体';
  Font.Size := 9;
end;

end.

⌨️ 快捷键说明

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