Unit2.dfm 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. object Form2: TForm2
  2. Left = 0
  3. Top = 0
  4. Caption = 'Form2'
  5. ClientHeight = 202
  6. ClientWidth = 447
  7. Color = clBtnFace
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -11
  11. Font.Name = 'Tahoma'
  12. Font.Style = []
  13. OldCreateOrder = False
  14. Visible = True
  15. OnCreate = FormCreate
  16. OnDestroy = FormDestroy
  17. OnDragOver = FormDragOver
  18. OnMouseMove = FormMouseMove
  19. PixelsPerInch = 96
  20. TextHeight = 13
  21. object RichEdit: TRichEdit
  22. Left = 8
  23. Top = 8
  24. Width = 249
  25. Height = 186
  26. Color = clWhite
  27. Font.Charset = GB2312_CHARSET
  28. Font.Color = clWindowText
  29. Font.Height = -11
  30. Font.Name = 'Tahoma'
  31. Font.Style = []
  32. ParentFont = False
  33. ParentShowHint = False
  34. ShowHint = False
  35. TabOrder = 0
  36. OnClick = RichEditClick
  37. OnDblClick = RichEditDblClick
  38. OnEndDrag = RichEditEndDrag
  39. OnMouseActivate = RichEditMouseActivate
  40. OnMouseLeave = RichEditMouseLeave
  41. end
  42. object Edit: TEdit
  43. Left = 272
  44. Top = 8
  45. Width = 167
  46. Height = 21
  47. TabOrder = 1
  48. Text = 'Edit'
  49. end
  50. end