frmResTree.dfm
上传用户:youjie821
上传日期:2013-01-27
资源大小:459k
文件大小:2k
源码类别:

PlugIns编程

开发平台:

Delphi

  1. object ResTreeForm: TResTreeForm
  2.   Left = 220
  3.   Top = 240
  4.   Width = 551
  5.   Height = 365
  6.   Caption = 'ResTreeForm'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   OnCreate = FormCreate
  15.   OnDestroy = FormDestroy
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Label1: TLabel
  19.     Left = 328
  20.     Top = 24
  21.     Width = 32
  22.     Height = 13
  23.     Caption = 'Label1'
  24.   end
  25.   object TreeView1: TTreeView
  26.     Left = 20
  27.     Top = 8
  28.     Width = 193
  29.     Height = 297
  30.     HideSelection = False
  31.     Indent = 19
  32.     TabOrder = 0
  33.     OnChange = TreeView1Change
  34.   end
  35.   object Button1: TButton
  36.     Left = 236
  37.     Top = 20
  38.     Width = 75
  39.     Height = 25
  40.     Action = actLoad
  41.     TabOrder = 1
  42.   end
  43.   object Button2: TButton
  44.     Left = 236
  45.     Top = 52
  46.     Width = 75
  47.     Height = 25
  48.     Action = actAdd
  49.     TabOrder = 2
  50.   end
  51.   object Button3: TButton
  52.     Left = 236
  53.     Top = 84
  54.     Width = 75
  55.     Height = 25
  56.     Action = actDelete
  57.     TabOrder = 3
  58.   end
  59.   object Button4: TButton
  60.     Left = 240
  61.     Top = 116
  62.     Width = 75
  63.     Height = 25
  64.     Caption = 'Button4'
  65.     TabOrder = 4
  66.   end
  67.   object ActionList1: TActionList
  68.     Left = 344
  69.     Top = 48
  70.     object actLoad: TAction
  71.       Caption = '&Load'
  72.       OnExecute = actLoadExecute
  73.     end
  74.     object actAdd: TAction
  75.       Caption = '&Add'
  76.     end
  77.     object actDelete: TAction
  78.       Caption = '&Delete'
  79.       OnExecute = actDeleteExecute
  80.       OnUpdate = actDeleteUpdate
  81.     end
  82.     object actRefresh: TAction
  83.       Caption = '&Refresh'
  84.       OnExecute = actRefreshExecute
  85.     end
  86.   end
  87. end