坐席客户端5.0

FrmDownLoad.Designer.cs 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. namespace Lecall
  2. {
  3. partial class FrmDownLoad
  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.label1 = new System.Windows.Forms.Label();
  29. this.txtPath = new System.Windows.Forms.TextBox();
  30. this.btnScan = new System.Windows.Forms.Button();
  31. this.btnDownLoad = new System.Windows.Forms.Button();
  32. this.btnCancel = new System.Windows.Forms.Button();
  33. this.prog = new System.Windows.Forms.ProgressBar();
  34. this.SuspendLayout();
  35. //
  36. // label1
  37. //
  38. this.label1.AutoSize = true;
  39. this.label1.Location = new System.Drawing.Point(11, 26);
  40. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  41. this.label1.Name = "label1";
  42. this.label1.Size = new System.Drawing.Size(83, 17);
  43. this.label1.TabIndex = 0;
  44. this.label1.Text = "文件保存路径:";
  45. //
  46. // txtPath
  47. //
  48. this.txtPath.Location = new System.Drawing.Point(100, 24);
  49. this.txtPath.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  50. this.txtPath.Name = "txtPath";
  51. this.txtPath.Size = new System.Drawing.Size(352, 23);
  52. this.txtPath.TabIndex = 1;
  53. //
  54. // btnScan
  55. //
  56. this.btnScan.Location = new System.Drawing.Point(463, 22);
  57. this.btnScan.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  58. this.btnScan.Name = "btnScan";
  59. this.btnScan.Size = new System.Drawing.Size(51, 27);
  60. this.btnScan.TabIndex = 2;
  61. this.btnScan.Text = "浏览...";
  62. this.btnScan.UseVisualStyleBackColor = true;
  63. this.btnScan.Click += new System.EventHandler(this.btnScan_Click);
  64. //
  65. // btnDownLoad
  66. //
  67. this.btnDownLoad.Location = new System.Drawing.Point(181, 66);
  68. this.btnDownLoad.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  69. this.btnDownLoad.Name = "btnDownLoad";
  70. this.btnDownLoad.Size = new System.Drawing.Size(66, 28);
  71. this.btnDownLoad.TabIndex = 3;
  72. this.btnDownLoad.Text = "下载";
  73. this.btnDownLoad.UseVisualStyleBackColor = true;
  74. this.btnDownLoad.Click += new System.EventHandler(this.btnDownLoad_Click);
  75. //
  76. // btnCancel
  77. //
  78. this.btnCancel.Location = new System.Drawing.Point(281, 66);
  79. this.btnCancel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  80. this.btnCancel.Name = "btnCancel";
  81. this.btnCancel.Size = new System.Drawing.Size(66, 28);
  82. this.btnCancel.TabIndex = 4;
  83. this.btnCancel.Text = "取消";
  84. this.btnCancel.UseVisualStyleBackColor = true;
  85. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  86. //
  87. // prog
  88. //
  89. this.prog.Location = new System.Drawing.Point(0, 111);
  90. this.prog.Name = "prog";
  91. this.prog.Size = new System.Drawing.Size(530, 15);
  92. this.prog.TabIndex = 5;
  93. //
  94. // FrmDownLoad
  95. //
  96. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
  97. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  98. this.ClientSize = new System.Drawing.Size(530, 126);
  99. this.Controls.Add(this.prog);
  100. this.Controls.Add(this.btnCancel);
  101. this.Controls.Add(this.btnDownLoad);
  102. this.Controls.Add(this.btnScan);
  103. this.Controls.Add(this.txtPath);
  104. this.Controls.Add(this.label1);
  105. this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  106. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  107. this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  108. this.MaximizeBox = false;
  109. this.MinimizeBox = false;
  110. this.Name = "FrmDownLoad";
  111. this.ShowIcon = false;
  112. this.ShowInTaskbar = false;
  113. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  114. this.Text = "下载页面";
  115. this.TopMost = true;
  116. this.Load += new System.EventHandler(this.FrmDownLoad_Load);
  117. this.ResumeLayout(false);
  118. this.PerformLayout();
  119. }
  120. #endregion
  121. private System.Windows.Forms.Label label1;
  122. private System.Windows.Forms.TextBox txtPath;
  123. private System.Windows.Forms.Button btnScan;
  124. private System.Windows.Forms.Button btnDownLoad;
  125. private System.Windows.Forms.Button btnCancel;
  126. private System.Windows.Forms.ProgressBar prog;
  127. }
  128. }