CopyLocal.dfm 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. object CopyLocalDialog: TCopyLocalDialog
  2. Left = 0
  3. Top = 0
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_copy_local'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'CopyLocalDialog'
  9. ClientHeight = 126
  10. ClientWidth = 511
  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. OnAfterMonitorDpiChanged = FormAfterMonitorDpiChanged
  19. OnCloseQuery = FormCloseQuery
  20. OnShow = FormShow
  21. DesignSize = (
  22. 511
  23. 126)
  24. TextHeight = 15
  25. object Image: TImage
  26. Left = 8
  27. Top = 11
  28. Width = 32
  29. Height = 32
  30. AutoSize = True
  31. end
  32. object DirectoryLabel: TLabel
  33. Left = 46
  34. Top = 8
  35. Width = 63
  36. Height = 15
  37. Caption = '&Target path:'
  38. FocusControl = DirectoryEdit
  39. end
  40. object DirectoryEdit: THistoryComboBox
  41. Left = 46
  42. Top = 26
  43. Width = 371
  44. Height = 23
  45. AutoComplete = False
  46. Anchors = [akLeft, akTop, akRight]
  47. DropDownCount = 16
  48. TabOrder = 0
  49. Text = 'DirectoryEdit'
  50. OnExit = DirectoryEditExit
  51. end
  52. object OkButton: TButton
  53. Left = 251
  54. Top = 55
  55. Width = 80
  56. Height = 25
  57. Anchors = [akTop, akRight]
  58. Caption = 'OK'
  59. Default = True
  60. ModalResult = 1
  61. TabOrder = 3
  62. end
  63. object CancelButton: TButton
  64. Left = 337
  65. Top = 55
  66. Width = 80
  67. Height = 25
  68. Anchors = [akTop, akRight]
  69. Cancel = True
  70. Caption = 'Cancel'
  71. ModalResult = 2
  72. TabOrder = 4
  73. end
  74. object LocalDirectoryBrowseButton: TButton
  75. Left = 423
  76. Top = 25
  77. Width = 80
  78. Height = 25
  79. Caption = 'B&rowse...'
  80. TabOrder = 1
  81. OnClick = LocalDirectoryBrowseButtonClick
  82. end
  83. object HelpButton: TButton
  84. Left = 423
  85. Top = 55
  86. Width = 80
  87. Height = 25
  88. Anchors = [akTop, akRight]
  89. Caption = '&Help'
  90. TabOrder = 5
  91. OnClick = HelpButtonClick
  92. end
  93. object NeverShowAgainCheck: TCheckBox
  94. Left = 10
  95. Top = 59
  96. Width = 237
  97. Height = 17
  98. Caption = '&Do not show this dialog box again'
  99. TabOrder = 2
  100. end
  101. object ShortCutHintPanel: TPanel
  102. Left = 0
  103. Top = 88
  104. Width = 511
  105. Height = 38
  106. Align = alBottom
  107. BevelOuter = bvNone
  108. ParentBackground = False
  109. TabOrder = 6
  110. DesignSize = (
  111. 511
  112. 38)
  113. object ShortCutHintLabel: TLabel
  114. Left = 8
  115. Top = 3
  116. Width = 495
  117. Height = 32
  118. Anchors = [akLeft, akTop, akRight, akBottom]
  119. AutoSize = False
  120. Caption =
  121. 'In Commander interface the keyboard shortcut F5 is used to trans' +
  122. 'fer files. Should you want to use it to refresh a file panel, cl' +
  123. 'ick here to go to preferences.'
  124. ShowAccelChar = False
  125. WordWrap = True
  126. OnClick = ShortCutHintLabelClick
  127. end
  128. end
  129. end