IDE.SignToolsForm.dfm 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. object SignToolsForm: TSignToolsForm
  2. Left = 330
  3. Top = 188
  4. BorderIcons = [biSystemMenu]
  5. Caption = 'Configure Sign Tools'
  6. ClientHeight = 247
  7. ClientWidth = 577
  8. Color = clBtnFace
  9. Font.Charset = DEFAULT_CHARSET
  10. Font.Color = clWindowText
  11. Font.Height = -11
  12. Font.Name = 'MS Sans Serif'
  13. Font.Style = []
  14. Position = poScreenCenter
  15. OnCreate = FormCreate
  16. OnDestroy = FormDestroy
  17. DesignSize = (
  18. 577
  19. 247)
  20. TextHeight = 13
  21. object GroupBox1: TGroupBox
  22. Left = 8
  23. Top = 8
  24. Width = 561
  25. Height = 201
  26. Anchors = [akLeft, akTop, akRight, akBottom]
  27. Caption = ' Sign Tools '
  28. TabOrder = 0
  29. DesignSize = (
  30. 561
  31. 201)
  32. object SignToolsListBox: TListBox
  33. Left = 8
  34. Top = 16
  35. Width = 465
  36. Height = 177
  37. Anchors = [akLeft, akTop, akRight, akBottom]
  38. ItemHeight = 13
  39. TabOrder = 0
  40. OnClick = SignToolsListBoxClick
  41. OnDblClick = SignToolsListBoxDblClick
  42. end
  43. object AddButton: TButton
  44. Left = 480
  45. Top = 18
  46. Width = 73
  47. Height = 23
  48. Anchors = [akTop, akRight]
  49. Caption = '&Add...'
  50. Default = True
  51. TabOrder = 1
  52. OnClick = AddButtonClick
  53. end
  54. object RemoveButton: TButton
  55. Left = 480
  56. Top = 74
  57. Width = 73
  58. Height = 23
  59. Anchors = [akTop, akRight]
  60. Caption = 'Remo&ve'
  61. TabOrder = 3
  62. OnClick = RemoveButtonClick
  63. end
  64. object EditButton: TButton
  65. Left = 480
  66. Top = 46
  67. Width = 73
  68. Height = 23
  69. Anchors = [akTop, akRight]
  70. Caption = '&Edit...'
  71. TabOrder = 2
  72. OnClick = EditButtonClick
  73. end
  74. end
  75. object OKButton: TButton
  76. Left = 416
  77. Top = 217
  78. Width = 73
  79. Height = 23
  80. Anchors = [akRight, akBottom]
  81. Caption = 'OK'
  82. Default = True
  83. ModalResult = 1
  84. TabOrder = 1
  85. end
  86. object CancelButton: TButton
  87. Left = 496
  88. Top = 217
  89. Width = 73
  90. Height = 23
  91. Anchors = [akRight, akBottom]
  92. Cancel = True
  93. Caption = 'Cancel'
  94. ModalResult = 2
  95. TabOrder = 2
  96. end
  97. end