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

PlugIns编程

开发平台:

Delphi

  1. object ProjectCollectionForm: TProjectCollectionForm
  2.   Left = 202
  3.   Top = 160
  4.   Width = 518
  5.   Height = 422
  6.   Caption = 'ProjectCollectionForm'
  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 btnAdd: TButton
  19.     Left = 320
  20.     Top = 52
  21.     Width = 75
  22.     Height = 25
  23.     Caption = '&Add'
  24.     TabOrder = 0
  25.     OnClick = btnAddClick
  26.   end
  27.   object btnRefresh: TButton
  28.     Left = 320
  29.     Top = 20
  30.     Width = 75
  31.     Height = 25
  32.     Caption = '&Refresh'
  33.     TabOrder = 1
  34.     OnClick = btnRefreshClick
  35.   end
  36.   object ListView1: TListView
  37.     Left = 8
  38.     Top = 20
  39.     Width = 305
  40.     Height = 161
  41.     Columns = <
  42.       item
  43.         Caption = 'ProjectName'
  44.         Width = 100
  45.       end
  46.       item
  47.         Caption = 'Description'
  48.         Width = 100
  49.       end
  50.       item
  51.         Caption = 'RootDir'
  52.         Width = 100
  53.       end>
  54.     RowSelect = True
  55.     TabOrder = 2
  56.     ViewStyle = vsReport
  57.   end
  58.   object btnView: TButton
  59.     Left = 320
  60.     Top = 84
  61.     Width = 75
  62.     Height = 25
  63.     Caption = '&View'
  64.     TabOrder = 3
  65.     OnClick = btnViewClick
  66.   end
  67.   object btnClear: TButton
  68.     Left = 320
  69.     Top = 116
  70.     Width = 75
  71.     Height = 25
  72.     Caption = '&Clear'
  73.     TabOrder = 4
  74.     OnClick = btnClearClick
  75.   end
  76.   object ListView2: TListView
  77.     Left = 8
  78.     Top = 192
  79.     Width = 305
  80.     Height = 161
  81.     Columns = <
  82.       item
  83.         Caption = 'ProjectName'
  84.         Width = 100
  85.       end
  86.       item
  87.         Caption = 'Description'
  88.         Width = 100
  89.       end
  90.       item
  91.         Caption = 'RootDir'
  92.         Width = 100
  93.       end>
  94.     RowSelect = True
  95.     TabOrder = 5
  96.     ViewStyle = vsReport
  97.   end
  98.   object btnAssign: TButton
  99.     Left = 324
  100.     Top = 192
  101.     Width = 75
  102.     Height = 25
  103.     Caption = '&Assign'
  104.     TabOrder = 6
  105.     OnClick = btnAssignClick
  106.   end
  107. end