WordListUnit.dfm 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. object WordListForm: TWordListForm
  2. Left = 209
  3. Top = 124
  4. ActiveControl = ListStrings
  5. BorderIcons = [biSystemMenu]
  6. BorderStyle = bsDialog
  7. Caption = 'Edit Word List'
  8. ClientHeight = 230
  9. ClientWidth = 225
  10. Color = clBtnFace
  11. Font.Charset = DEFAULT_CHARSET
  12. Font.Color = clWindowText
  13. Font.Height = -11
  14. Font.Name = 'MS Sans Serif'
  15. Font.Style = []
  16. OldCreateOrder = False
  17. Position = poScreenCenter
  18. OnClose = FormClose
  19. OnCreate = FormCreate
  20. OnDestroy = FormDestroy
  21. OnShow = FormShow
  22. PixelsPerInch = 96
  23. TextHeight = 13
  24. object Bevel1: TBevel
  25. Left = 16
  26. Top = 132
  27. Width = 193
  28. Height = 2
  29. Shape = bsTopLine
  30. end
  31. object Bevel2: TBevel
  32. Left = 8
  33. Top = 180
  34. Width = 209
  35. Height = 2
  36. Shape = bsTopLine
  37. end
  38. object Button1: TButton
  39. Left = 24
  40. Top = 144
  41. Width = 81
  42. Height = 25
  43. Caption = 'Co&lor...'
  44. TabOrder = 2
  45. OnClick = Button1Click
  46. end
  47. object Button2: TButton
  48. Left = 120
  49. Top = 144
  50. Width = 81
  51. Height = 25
  52. Caption = '&Style...'
  53. TabOrder = 3
  54. OnClick = Button2Click
  55. end
  56. object Button3: TButton
  57. Left = 24
  58. Top = 192
  59. Width = 81
  60. Height = 25
  61. Caption = '&OK'
  62. Default = True
  63. ModalResult = 1
  64. TabOrder = 4
  65. end
  66. object Button4: TButton
  67. Left = 120
  68. Top = 192
  69. Width = 81
  70. Height = 25
  71. Cancel = True
  72. Caption = '&Cancel'
  73. ModalResult = 2
  74. TabOrder = 5
  75. end
  76. object ListStrings: TMemo
  77. Left = 16
  78. Top = 16
  79. Width = 193
  80. Height = 81
  81. Font.Charset = DEFAULT_CHARSET
  82. Font.Color = clWindowText
  83. Font.Height = -12
  84. Font.Name = 'Fixedsys'
  85. Font.Style = []
  86. ParentFont = False
  87. ScrollBars = ssVertical
  88. TabOrder = 0
  89. WordWrap = False
  90. end
  91. object CaseSensitiveBox: TCheckBox
  92. Left = 120
  93. Top = 104
  94. Width = 89
  95. Height = 17
  96. Caption = 'C&ase Sensitive'
  97. Checked = True
  98. State = cbChecked
  99. TabOrder = 1
  100. OnClick = CaseSensitiveBoxClick
  101. end
  102. object ColorDlg: TColorDialog
  103. Options = [cdAnyColor]
  104. Left = 192
  105. end
  106. end