fvariableeditor.dfm

来自「Workflow Studio是一款专为商业进程管理(BPM)设计的Delphi」· DFM 代码 · 共 97 行

DFM
97
字号
object fmVariableEditor: TfmVariableEditor
  Left = 517
  Top = 152
  Width = 574
  Height = 456
  Caption = 'Variables'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'Tahoma'
  Font.Style = []
  OldCreateOrder = False
  Position = poOwnerFormCenter
  PixelsPerInch = 96
  TextHeight = 13
  object PageControl1: TPageControl
    Left = 198
    Top = 8
    Width = 364
    Height = 372
    ActivePage = TabSheet1
    Anchors = [akLeft, akTop, akRight, akBottom]
    TabOrder = 0
    object TabSheet1: TTabSheet
      Caption = 'General'
      object Label1: TLabel
        Left = 5
        Top = 5
        Width = 27
        Height = 13
        Caption = 'Value'
      end
      object edValue: TEdit
        Left = 6
        Top = 20
        Width = 342
        Height = 21
        Anchors = [akLeft, akTop, akRight]
        TabOrder = 0
        OnChange = PropertyChanged
      end
    end
  end
  object lvVars: TListView
    Left = 8
    Top = 39
    Width = 185
    Height = 340
    Anchors = [akLeft, akTop, akBottom]
    Columns = <>
    HideSelection = False
    TabOrder = 1
    ViewStyle = vsReport
    OnEdited = lvVarsEdited
    OnSelectItem = lvVarsSelectItem
  end
  object btAdd: TButton
    Left = 8
    Top = 8
    Width = 60
    Height = 25
    Caption = '&Add'
    TabOrder = 2
    OnClick = btAddClick
  end
  object btDelete: TButton
    Left = 71
    Top = 8
    Width = 60
    Height = 25
    Caption = '&Delete'
    TabOrder = 3
    OnClick = btDeleteClick
  end
  object btCancel: TButton
    Left = 480
    Top = 390
    Width = 75
    Height = 25
    Anchors = [akBottom]
    Caption = 'Cancel'
    TabOrder = 4
    OnClick = btCancelClick
  end
  object btOk: TButton
    Left = 398
    Top = 390
    Width = 75
    Height = 25
    Anchors = [akBottom]
    Caption = 'Ok'
    TabOrder = 5
    OnClick = btOkClick
  end
end

⌨️ 快捷键说明

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