onlinemsg.dfm

来自「2009最新 传奇汉化0599代码 传奇汉化」· DFM 代码 · 共 100 行

DFM
100
字号
object frmOnlineMsg: TfrmOnlineMsg
  Left = 292
  Top = 164
  BorderIcons = [biSystemMenu]
  BorderStyle = bsSingle
  Caption = 'Online Messages'
  ClientHeight = 415
  ClientWidth = 550
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -12
  Font.Name = '??'
  Font.Style = []
  OldCreateOrder = False
  Position = poScreenCenter
  OnCreate = FormCreate
  PixelsPerInch = 96
  TextHeight = 15
  object Label1: TLabel
    Left = 5
    Top = 211
    Width = 54
    Height = 15
    Caption = 'Message:'
  end
  object ComboBoxMsg: TComboBox
    Left = 79
    Top = 206
    Width = 467
    Height = 25
    Hint = 'Type message here to be sent then click send or add'
    Style = csSimple
    ItemHeight = 15
    TabOrder = 0
    OnChange = ComboBoxMsgChange
    OnKeyPress = ComboBoxMsgKeyPress
  end
  object MemoMsg: TMemo
    Left = 0
    Top = 0
    Width = 550
    Height = 191
    Hint = 'Sent messages'
    Align = alTop
    TabOrder = 1
    OnChange = MemoMsgChange
  end
  object StringGrid: TStringGrid
    Left = 0
    Top = 283
    Width = 550
    Height = 132
    Hint = 'Stored mesage list'
    Align = alBottom
    ColCount = 1
    DefaultColWidth = 430
    DefaultRowHeight = 18
    FixedCols = 0
    RowCount = 1
    FixedRows = 0
    ScrollBars = ssVertical
    TabOrder = 2
    OnClick = StringGridClick
    OnDblClick = StringGridDblClick
  end
  object ButtonAdd: TButton
    Left = 459
    Top = 239
    Width = 84
    Height = 29
    Hint = 'Adds the typed mesage to the stored message list'
    Caption = '&Add'
    Enabled = False
    TabOrder = 3
    OnClick = ButtonAddClick
  end
  object ButtonDelete: TButton
    Left = 366
    Top = 239
    Width = 84
    Height = 29
    Hint = 'Deletes the selected message from the stored mesage list'
    Caption = '&Delete'
    Enabled = False
    TabOrder = 4
    OnClick = ButtonDeleteClick
  end
  object ButtonSend: TButton
    Left = 185
    Top = 238
    Width = 84
    Height = 28
    Hint = 'Will send message and display it ingame'
    Caption = '&Send'
    TabOrder = 5
    OnClick = ButtonSendClick
  end
end

⌨️ 快捷键说明

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