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

📄 iwunit2.pas

📁 Delphi面向对象编程思想附书源码 好用哦!
💻 PAS
字号:
unit IWUnit2;
{PUBDIST}

interface

uses
  IWAppForm, IWApplication, IWTypes, IWHTMLControls, IWCompLabel, jpeg,
  Classes, Controls, IWControl, IWExtCtrls, IWCompListbox;

type
  TFormWelcome = class(TIWAppForm)
    IWImage1: TIWImage;
    IWLabel1: TIWLabel;
    IWURL1: TIWURL;
    IWListbox1: TIWListbox;
    procedure IWAppFormCreate(Sender: TObject);
  public
  end;

implementation
{$R *.dfm}

uses
  ServerController;

procedure TFormWelcome.IWAppFormCreate(Sender: TObject);
begin
  if UserSession.FMan=nil then exit;
  IWListbox1.Items.Add(UserSession.FMan.Name);
  IWListbox1.Items.Add(UserSession.FMan.Dep);
  IWListbox1.Items.Add(UserSession.FMan.Job);
end;

end.

⌨️ 快捷键说明

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