IDE.GotoFileForm.dfm 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. object GotoFileForm: TGotoFileForm
  2. Left = 330
  3. Top = 188
  4. BorderIcons = [biSystemMenu]
  5. Caption = 'Go to File'
  6. ClientHeight = 497
  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. DesignSize = (
  17. 577
  18. 497)
  19. TextHeight = 13
  20. object OKButton: TButton
  21. Left = 416
  22. Top = 467
  23. Width = 73
  24. Height = 23
  25. Anchors = [akRight, akBottom]
  26. Caption = 'OK'
  27. Default = True
  28. ModalResult = 1
  29. TabOrder = 2
  30. OnClick = OKButtonClick
  31. end
  32. object CancelButton: TButton
  33. Left = 496
  34. Top = 467
  35. Width = 73
  36. Height = 23
  37. Anchors = [akRight, akBottom]
  38. Cancel = True
  39. Caption = 'Cancel'
  40. ModalResult = 2
  41. TabOrder = 3
  42. end
  43. object GotoFileListBox: TListBox
  44. Left = 8
  45. Top = 37
  46. Width = 561
  47. Height = 422
  48. Anchors = [akLeft, akTop, akRight, akBottom]
  49. ItemHeight = 13
  50. TabOrder = 1
  51. OnDblClick = GotoFileListBoxDblClick
  52. OnKeyDown = GotoFileEditOrListBoxKeyDown
  53. end
  54. object GotoFileEdit: TEdit
  55. Left = 8
  56. Top = 8
  57. Width = 561
  58. Height = 21
  59. Anchors = [akLeft, akTop, akRight]
  60. TabOrder = 0
  61. OnChange = GotoFileEditChange
  62. OnKeyDown = GotoFileEditOrListBoxKeyDown
  63. end
  64. end