Symlink.dfm 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. object SymlinkDialog: TSymlinkDialog
  2. Left = 384
  3. Top = 214
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_symlink'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'SymlinkDialog'
  9. ClientHeight = 177
  10. ClientWidth = 417
  11. Color = clBtnFace
  12. Font.Charset = DEFAULT_CHARSET
  13. Font.Color = clWindowText
  14. Font.Height = -12
  15. Font.Name = 'Segoe UI'
  16. Font.Style = []
  17. Position = poOwnerFormCenter
  18. OnShow = FormShow
  19. DesignSize = (
  20. 417
  21. 177)
  22. TextHeight = 15
  23. object SymlinkGroup: TGroupBox
  24. Left = 8
  25. Top = 8
  26. Width = 401
  27. Height = 130
  28. Anchors = [akLeft, akTop, akRight, akBottom]
  29. TabOrder = 0
  30. DesignSize = (
  31. 401
  32. 130)
  33. object FileNameLabel: TLabel
  34. Left = 9
  35. Top = 9
  36. Width = 93
  37. Height = 15
  38. Caption = '&Link/shortcut file:'
  39. FocusControl = FileNameEdit
  40. end
  41. object Label1: TLabel
  42. Left = 9
  43. Top = 56
  44. Width = 116
  45. Height = 15
  46. Caption = '&Point link/shortcut to:'
  47. FocusControl = PointToEdit
  48. end
  49. object FileNameEdit: TEdit
  50. Left = 9
  51. Top = 27
  52. Width = 383
  53. Height = 23
  54. Anchors = [akLeft, akTop, akRight]
  55. MaxLength = 250
  56. TabOrder = 0
  57. OnChange = ControlChange
  58. end
  59. object PointToEdit: TEdit
  60. Left = 9
  61. Top = 74
  62. Width = 383
  63. Height = 23
  64. Anchors = [akLeft, akTop, akRight]
  65. MaxLength = 250
  66. TabOrder = 1
  67. OnChange = ControlChange
  68. end
  69. object HardLinkCheck: TCheckBox
  70. Left = 11
  71. Top = 103
  72. Width = 401
  73. Height = 17
  74. Caption = '&Hard link'
  75. TabOrder = 2
  76. OnClick = ControlChange
  77. end
  78. end
  79. object OkButton: TButton
  80. Left = 157
  81. Top = 144
  82. Width = 80
  83. Height = 25
  84. Anchors = [akRight, akBottom]
  85. Caption = 'OK'
  86. Default = True
  87. ModalResult = 1
  88. TabOrder = 1
  89. end
  90. object CancelButton: TButton
  91. Left = 243
  92. Top = 144
  93. Width = 80
  94. Height = 25
  95. Anchors = [akRight, akBottom]
  96. Cancel = True
  97. Caption = 'Cancel'
  98. ModalResult = 2
  99. TabOrder = 2
  100. end
  101. object HelpButton: TButton
  102. Left = 329
  103. Top = 144
  104. Width = 80
  105. Height = 25
  106. Anchors = [akRight, akBottom]
  107. Caption = '&Help'
  108. TabOrder = 3
  109. OnClick = HelpButtonClick
  110. end
  111. end