PageRenderTime 46ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/Visual Studio 2008/CSFTPDownload/MainForm.Designer.cs

#
C# | 271 lines | 199 code | 7 blank | 65 comment | 3 complexity | d0494bee22190d7819d4b07a47e13d62 MD5 | raw file
  1. namespace CSFTPDownload
  2. {
  3. partial class MainForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.pnlFTPServer = new System.Windows.Forms.Panel();
  29. this.lbCurrentUrl = new System.Windows.Forms.Label();
  30. this.btnConnect = new System.Windows.Forms.Button();
  31. this.tbFTPServer = new System.Windows.Forms.TextBox();
  32. this.lbFTPServer = new System.Windows.Forms.Label();
  33. this.grpDownload = new System.Windows.Forms.GroupBox();
  34. this.btnDownload = new System.Windows.Forms.Button();
  35. this.btnBrowseDownloadPath = new System.Windows.Forms.Button();
  36. this.tbDownloadPath = new System.Windows.Forms.TextBox();
  37. this.lbDownloadPath = new System.Windows.Forms.Label();
  38. this.pnlStatus = new System.Windows.Forms.Panel();
  39. this.grpFileExplorer = new System.Windows.Forms.GroupBox();
  40. this.lstFileExplorer = new System.Windows.Forms.ListBox();
  41. this.btnNavigateParentFolder = new System.Windows.Forms.Button();
  42. this.pnlCurrentPath = new System.Windows.Forms.Panel();
  43. this.grpLog = new System.Windows.Forms.GroupBox();
  44. this.lstLog = new System.Windows.Forms.ListBox();
  45. this.pnlFTPServer.SuspendLayout();
  46. this.grpDownload.SuspendLayout();
  47. this.pnlStatus.SuspendLayout();
  48. this.grpFileExplorer.SuspendLayout();
  49. this.pnlCurrentPath.SuspendLayout();
  50. this.grpLog.SuspendLayout();
  51. this.SuspendLayout();
  52. //
  53. // pnlFTPServer
  54. //
  55. this.pnlFTPServer.Controls.Add(this.btnConnect);
  56. this.pnlFTPServer.Controls.Add(this.tbFTPServer);
  57. this.pnlFTPServer.Controls.Add(this.lbFTPServer);
  58. this.pnlFTPServer.Dock = System.Windows.Forms.DockStyle.Top;
  59. this.pnlFTPServer.Location = new System.Drawing.Point(0, 0);
  60. this.pnlFTPServer.Name = "pnlFTPServer";
  61. this.pnlFTPServer.Size = new System.Drawing.Size(1077, 33);
  62. this.pnlFTPServer.TabIndex = 0;
  63. //
  64. // lbCurrentUrl
  65. //
  66. this.lbCurrentUrl.AutoSize = true;
  67. this.lbCurrentUrl.Location = new System.Drawing.Point(106, 10);
  68. this.lbCurrentUrl.Name = "lbCurrentUrl";
  69. this.lbCurrentUrl.Size = new System.Drawing.Size(66, 13);
  70. this.lbCurrentUrl.TabIndex = 4;
  71. this.lbCurrentUrl.Text = "Current Path";
  72. //
  73. // btnConnect
  74. //
  75. this.btnConnect.Location = new System.Drawing.Point(440, 4);
  76. this.btnConnect.Name = "btnConnect";
  77. this.btnConnect.Size = new System.Drawing.Size(75, 23);
  78. this.btnConnect.TabIndex = 2;
  79. this.btnConnect.Text = "Connect";
  80. this.btnConnect.UseVisualStyleBackColor = true;
  81. this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
  82. //
  83. // tbFTPServer
  84. //
  85. this.tbFTPServer.Location = new System.Drawing.Point(78, 8);
  86. this.tbFTPServer.Name = "tbFTPServer";
  87. this.tbFTPServer.Size = new System.Drawing.Size(355, 20);
  88. this.tbFTPServer.TabIndex = 1;
  89. this.tbFTPServer.Text = "ftp://localhost";
  90. //
  91. // lbFTPServer
  92. //
  93. this.lbFTPServer.AutoSize = true;
  94. this.lbFTPServer.Location = new System.Drawing.Point(13, 13);
  95. this.lbFTPServer.Name = "lbFTPServer";
  96. this.lbFTPServer.Size = new System.Drawing.Size(58, 13);
  97. this.lbFTPServer.TabIndex = 0;
  98. this.lbFTPServer.Text = "FTPServer";
  99. //
  100. // grpDownload
  101. //
  102. this.grpDownload.Controls.Add(this.btnDownload);
  103. this.grpDownload.Controls.Add(this.btnBrowseDownloadPath);
  104. this.grpDownload.Controls.Add(this.tbDownloadPath);
  105. this.grpDownload.Controls.Add(this.lbDownloadPath);
  106. this.grpDownload.Dock = System.Windows.Forms.DockStyle.Fill;
  107. this.grpDownload.Location = new System.Drawing.Point(524, 33);
  108. this.grpDownload.Name = "grpDownload";
  109. this.grpDownload.Size = new System.Drawing.Size(553, 341);
  110. this.grpDownload.TabIndex = 0;
  111. this.grpDownload.TabStop = false;
  112. this.grpDownload.Text = "Download";
  113. //
  114. // btnDownload
  115. //
  116. this.btnDownload.Location = new System.Drawing.Point(91, 64);
  117. this.btnDownload.Name = "btnDownload";
  118. this.btnDownload.Size = new System.Drawing.Size(75, 23);
  119. this.btnDownload.TabIndex = 3;
  120. this.btnDownload.Text = "Download";
  121. this.btnDownload.UseVisualStyleBackColor = true;
  122. this.btnDownload.Click += new System.EventHandler(this.btnDownload_Click);
  123. //
  124. // btnBrowseDownloadPath
  125. //
  126. this.btnBrowseDownloadPath.Location = new System.Drawing.Point(427, 25);
  127. this.btnBrowseDownloadPath.Name = "btnBrowseDownloadPath";
  128. this.btnBrowseDownloadPath.Size = new System.Drawing.Size(75, 23);
  129. this.btnBrowseDownloadPath.TabIndex = 2;
  130. this.btnBrowseDownloadPath.Text = "Browse";
  131. this.btnBrowseDownloadPath.UseVisualStyleBackColor = true;
  132. this.btnBrowseDownloadPath.Click += new System.EventHandler(this.btnBrowseDownloadPath_Click);
  133. //
  134. // tbDownloadPath
  135. //
  136. this.tbDownloadPath.Location = new System.Drawing.Point(91, 26);
  137. this.tbDownloadPath.Name = "tbDownloadPath";
  138. this.tbDownloadPath.ReadOnly = true;
  139. this.tbDownloadPath.Size = new System.Drawing.Size(329, 20);
  140. this.tbDownloadPath.TabIndex = 1;
  141. //
  142. // lbDownloadPath
  143. //
  144. this.lbDownloadPath.AutoSize = true;
  145. this.lbDownloadPath.Location = new System.Drawing.Point(7, 30);
  146. this.lbDownloadPath.Name = "lbDownloadPath";
  147. this.lbDownloadPath.Size = new System.Drawing.Size(77, 13);
  148. this.lbDownloadPath.TabIndex = 0;
  149. this.lbDownloadPath.Text = "DownloadPath";
  150. //
  151. // pnlStatus
  152. //
  153. this.pnlStatus.Controls.Add(this.grpLog);
  154. this.pnlStatus.Dock = System.Windows.Forms.DockStyle.Bottom;
  155. this.pnlStatus.Location = new System.Drawing.Point(0, 374);
  156. this.pnlStatus.Name = "pnlStatus";
  157. this.pnlStatus.Size = new System.Drawing.Size(1077, 199);
  158. this.pnlStatus.TabIndex = 1;
  159. //
  160. // grpFileExplorer
  161. //
  162. this.grpFileExplorer.Controls.Add(this.lstFileExplorer);
  163. this.grpFileExplorer.Controls.Add(this.pnlCurrentPath);
  164. this.grpFileExplorer.Dock = System.Windows.Forms.DockStyle.Left;
  165. this.grpFileExplorer.Location = new System.Drawing.Point(0, 33);
  166. this.grpFileExplorer.Name = "grpFileExplorer";
  167. this.grpFileExplorer.Size = new System.Drawing.Size(524, 341);
  168. this.grpFileExplorer.TabIndex = 2;
  169. this.grpFileExplorer.TabStop = false;
  170. this.grpFileExplorer.Text = "FTP File Explorer";
  171. //
  172. // lstFileExplorer
  173. //
  174. this.lstFileExplorer.Dock = System.Windows.Forms.DockStyle.Fill;
  175. this.lstFileExplorer.FormattingEnabled = true;
  176. this.lstFileExplorer.Location = new System.Drawing.Point(3, 48);
  177. this.lstFileExplorer.Name = "lstFileExplorer";
  178. this.lstFileExplorer.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
  179. this.lstFileExplorer.Size = new System.Drawing.Size(518, 290);
  180. this.lstFileExplorer.TabIndex = 0;
  181. this.lstFileExplorer.DoubleClick += new System.EventHandler(this.lstFileExplorer_DoubleClick);
  182. //
  183. // btnNavigateParentFolder
  184. //
  185. this.btnNavigateParentFolder.Location = new System.Drawing.Point(9, 4);
  186. this.btnNavigateParentFolder.Name = "btnNavigateParentFolder";
  187. this.btnNavigateParentFolder.Size = new System.Drawing.Size(91, 23);
  188. this.btnNavigateParentFolder.TabIndex = 5;
  189. this.btnNavigateParentFolder.Text = "Parent Folder";
  190. this.btnNavigateParentFolder.UseVisualStyleBackColor = true;
  191. this.btnNavigateParentFolder.Click += new System.EventHandler(this.btnNavigateParentFolder_Click);
  192. //
  193. // pnlCurrentPath
  194. //
  195. this.pnlCurrentPath.Controls.Add(this.lbCurrentUrl);
  196. this.pnlCurrentPath.Controls.Add(this.btnNavigateParentFolder);
  197. this.pnlCurrentPath.Dock = System.Windows.Forms.DockStyle.Top;
  198. this.pnlCurrentPath.Location = new System.Drawing.Point(3, 16);
  199. this.pnlCurrentPath.Name = "pnlCurrentPath";
  200. this.pnlCurrentPath.Size = new System.Drawing.Size(518, 32);
  201. this.pnlCurrentPath.TabIndex = 6;
  202. //
  203. // grpLog
  204. //
  205. this.grpLog.Controls.Add(this.lstLog);
  206. this.grpLog.Dock = System.Windows.Forms.DockStyle.Fill;
  207. this.grpLog.Location = new System.Drawing.Point(0, 0);
  208. this.grpLog.Name = "grpLog";
  209. this.grpLog.Size = new System.Drawing.Size(1077, 199);
  210. this.grpLog.TabIndex = 0;
  211. this.grpLog.TabStop = false;
  212. this.grpLog.Text = "Log";
  213. //
  214. // lstLog
  215. //
  216. this.lstLog.Dock = System.Windows.Forms.DockStyle.Fill;
  217. this.lstLog.FormattingEnabled = true;
  218. this.lstLog.Location = new System.Drawing.Point(3, 16);
  219. this.lstLog.Name = "lstLog";
  220. this.lstLog.Size = new System.Drawing.Size(1071, 180);
  221. this.lstLog.TabIndex = 0;
  222. //
  223. // MainForm
  224. //
  225. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  226. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  227. this.ClientSize = new System.Drawing.Size(1077, 573);
  228. this.Controls.Add(this.grpDownload);
  229. this.Controls.Add(this.grpFileExplorer);
  230. this.Controls.Add(this.pnlStatus);
  231. this.Controls.Add(this.pnlFTPServer);
  232. this.Name = "MainForm";
  233. this.Text = "CSFTPDownload";
  234. this.pnlFTPServer.ResumeLayout(false);
  235. this.pnlFTPServer.PerformLayout();
  236. this.grpDownload.ResumeLayout(false);
  237. this.grpDownload.PerformLayout();
  238. this.pnlStatus.ResumeLayout(false);
  239. this.grpFileExplorer.ResumeLayout(false);
  240. this.pnlCurrentPath.ResumeLayout(false);
  241. this.pnlCurrentPath.PerformLayout();
  242. this.grpLog.ResumeLayout(false);
  243. this.ResumeLayout(false);
  244. }
  245. #endregion
  246. private System.Windows.Forms.Panel pnlFTPServer;
  247. private System.Windows.Forms.Button btnConnect;
  248. private System.Windows.Forms.TextBox tbFTPServer;
  249. private System.Windows.Forms.Label lbFTPServer;
  250. private System.Windows.Forms.GroupBox grpDownload;
  251. private System.Windows.Forms.Panel pnlStatus;
  252. private System.Windows.Forms.GroupBox grpFileExplorer;
  253. private System.Windows.Forms.ListBox lstFileExplorer;
  254. private System.Windows.Forms.Button btnDownload;
  255. private System.Windows.Forms.Button btnBrowseDownloadPath;
  256. private System.Windows.Forms.TextBox tbDownloadPath;
  257. private System.Windows.Forms.Label lbDownloadPath;
  258. private System.Windows.Forms.Label lbCurrentUrl;
  259. private System.Windows.Forms.Panel pnlCurrentPath;
  260. private System.Windows.Forms.Button btnNavigateParentFolder;
  261. private System.Windows.Forms.GroupBox grpLog;
  262. private System.Windows.Forms.ListBox lstLog;
  263. }
  264. }