FTPClientUnit.dfm
上传用户:yzhui7711
上传日期:2021-12-23
资源大小:293k
文件大小:2k
源码类别:

Ftp客户端

开发平台:

Delphi

  1. object FTPClientForm: TFTPClientForm
  2.   Left = 383
  3.   Top = 149
  4.   Width = 870
  5.   Height = 640
  6.   Caption = 'FTP client'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Menu = MainMenu1
  14.   OldCreateOrder = False
  15.   OnCreate = FormCreate
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Splitter1: TSplitter
  19.     Left = 345
  20.     Top = 0
  21.     Width = 8
  22.     Height = 563
  23.     AutoSnap = False
  24.     Beveled = True
  25.   end
  26.   object FolderTreeExplorer1: TFolderTreeExplorer
  27.     Left = 0
  28.     Top = 0
  29.     Width = 345
  30.     Height = 563
  31.     FileSystem = FTPFileSystem1
  32.     Align = alLeft
  33.     HideSelection = False
  34.     Indent = 19
  35.     TabOrder = 0
  36.   end
  37.   object FileListExplorer1: TFileListExplorer
  38.     Left = 353
  39.     Top = 0
  40.     Width = 509
  41.     Height = 563
  42.     FileSystem = FTPFileSystem1
  43.     DragAcceptFiles = True
  44.     Align = alClient
  45.     MultiSelect = True
  46.     ReadOnly = False
  47.     AdditionalPopupMenu = PopupMenu1
  48.     TabOrder = 1
  49.     OnDblClick = FileListExplorer1DblClick
  50.   end
  51.   object StatusBar1: TStatusBar
  52.     Left = 0
  53.     Top = 563
  54.     Width = 862
  55.     Height = 19
  56.     Panels = <>
  57.     SimplePanel = True
  58.   end
  59.   object FTPFileSystem1: TFTPFileSystem
  60.     LoginDialog = FTPLoginDialog1
  61.     OnEcho = FTPFileSystem1Echo
  62.     Left = 96
  63.     Top = 64
  64.   end
  65.   object MainMenu1: TMainMenu
  66.     Left = 96
  67.     Top = 32
  68.     object File1: TMenuItem
  69.       Caption = 'File'
  70.       object Connect1: TMenuItem
  71.         Caption = 'Connect'
  72.         OnClick = Connect1Click
  73.       end
  74.       object Disconnect1: TMenuItem
  75.         Caption = 'Disconnect'
  76.         OnClick = Disconnect1Click
  77.       end
  78.     end
  79.   end
  80.   object PopupMenu1: TPopupMenu
  81.     OnPopup = PopupMenu1Popup
  82.     Left = 96
  83.     Top = 128
  84.     object DownloadFile1: TMenuItem
  85.       Caption = 'Download file...'
  86.       OnClick = DownloadFile1Click
  87.     end
  88.     object Openfile1: TMenuItem
  89.       Caption = 'Open file'
  90.       OnClick = Openfile1Click
  91.     end
  92.   end
  93.   object LocalFileSystem1: TLocalFileSystem
  94.     Left = 128
  95.     Top = 64
  96.   end
  97.   object FileSystemSaveDialog1: TFileSystemSaveDialog
  98.     FileSystem = LocalFileSystem1
  99.     Filters = 'All files|*.*'
  100.     Options = [soResize]
  101.     Left = 128
  102.     Top = 96
  103.   end
  104.   object FTPLoginDialog1: TFTPLoginDialog
  105.     Left = 96
  106.     Top = 96
  107.   end
  108. end