ConfigureApplicationForm.dfm 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. object frmConfigureApplication: TfrmConfigureApplication
  2. Left = 196
  3. Top = 179
  4. BorderIcons = [biSystemMenu]
  5. BorderStyle = bsSingle
  6. Caption = 'frmConfigureApplication'
  7. ClientHeight = 171
  8. ClientWidth = 233
  9. Color = clBtnFace
  10. Font.Charset = DEFAULT_CHARSET
  11. Font.Color = clWindowText
  12. Font.Height = -11
  13. Font.Name = 'MS Sans Serif'
  14. Font.Style = []
  15. OldCreateOrder = False
  16. Position = poDesktopCenter
  17. PixelsPerInch = 96
  18. TextHeight = 13
  19. object Panel1: TPanel
  20. Left = 0
  21. Top = 130
  22. Width = 233
  23. Height = 41
  24. Align = alBottom
  25. Caption = 'Panel1'
  26. TabOrder = 0
  27. object btnCancel: TButton
  28. Left = 149
  29. Top = 8
  30. Width = 75
  31. Height = 25
  32. Anchors = [akTop, akRight]
  33. Caption = 'Cancel'
  34. ModalResult = 2
  35. TabOrder = 0
  36. end
  37. object btnOk: TButton
  38. Left = 69
  39. Top = 8
  40. Width = 75
  41. Height = 25
  42. Anchors = [akTop, akRight]
  43. Caption = 'Ok'
  44. ModalResult = 1
  45. TabOrder = 1
  46. end
  47. end
  48. object pcMain: TPageControl
  49. Left = 0
  50. Top = 0
  51. Width = 233
  52. Height = 130
  53. ActivePage = tsLogColors
  54. Align = alClient
  55. TabOrder = 1
  56. object tsLogColors: TTabSheet
  57. Caption = 'Log Colors'
  58. object Label1: TLabel
  59. Left = 8
  60. Top = 0
  61. Width = 41
  62. Height = 13
  63. Caption = 'Element:'
  64. end
  65. object Label2: TLabel
  66. Left = 0
  67. Top = 40
  68. Width = 27
  69. Height = 13
  70. Caption = 'Color:'
  71. end
  72. object cbElements: TComboBox
  73. Left = 16
  74. Top = 16
  75. Width = 201
  76. Height = 21
  77. Style = csDropDownList
  78. ItemHeight = 13
  79. TabOrder = 0
  80. OnChange = cbElementsChange
  81. end
  82. object cgColors: TColorGrid
  83. Left = 16
  84. Top = 56
  85. Width = 200
  86. Height = 40
  87. GridOrdering = go8x2
  88. BackgroundEnabled = False
  89. TabOrder = 1
  90. OnChange = cgColorsChange
  91. end
  92. end
  93. end
  94. end