tagdlg.dfm

来自「OPCSERVER的例子、是很好的学习例子」· DFM 代码 · 共 103 行

DFM
103
字号
object fmTagDlg: TfmTagDlg
  Left = 384
  Top = 281
  BorderIcons = [biSystemMenu]
  BorderStyle = bsDialog
  Caption = 'New Tag'
  ClientHeight = 177
  ClientWidth = 356
  Color = clGreen
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  Position = poDesktopCenter
  PixelsPerInch = 96
  TextHeight = 13
  object Label1: TLabel
    Left = 16
    Top = 24
    Width = 44
    Height = 13
    Caption = 'Add Num'
  end
  object Label2: TLabel
    Left = 16
    Top = 101
    Width = 48
    Height = 13
    Caption = 'Simulation'
  end
  object Label3: TLabel
    Left = 16
    Top = 62
    Width = 24
    Height = 13
    Caption = 'Type'
  end
  object Description: TLabel
    Left = 16
    Top = 140
    Width = 53
    Height = 13
    Caption = 'Description'
  end
  object edNum: TEdit
    Left = 72
    Top = 20
    Width = 177
    Height = 21
    TabOrder = 0
    Text = '1'
  end
  object cbType: TComboBox
    Left = 72
    Top = 58
    Width = 177
    Height = 21
    Style = csDropDownList
    ItemHeight = 13
    ItemIndex = 1
    TabOrder = 1
    Text = 'VT_BOOL'
    Items.Strings = (
      'VT_R4'
      'VT_BOOL'
      'VT_I2'
      'VT_BSTR')
  end
  object cbSimu: TComboBox
    Left = 72
    Top = 97
    Width = 177
    Height = 21
    Style = csDropDownList
    ItemHeight = 13
    ItemIndex = 2
    TabOrder = 2
    Text = 'Incremental'
    Items.Strings = (
      'None'
      'Random'
      'Incremental')
  end
  object Button1: TButton
    Left = 264
    Top = 18
    Width = 75
    Height = 25
    Caption = 'OK'
    ModalResult = 1
    TabOrder = 3
  end
  object edDesc: TEdit
    Left = 72
    Top = 136
    Width = 177
    Height = 21
    TabOrder = 4
  end
end

⌨️ 快捷键说明

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