ProgressBar.Designer.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. 
  2. namespace ftpUploadDLL.Weblogic
  3. {
  4. partial class ProgressBar
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.textBox1 = new System.Windows.Forms.TextBox();
  30. this.button1 = new System.Windows.Forms.Button();
  31. this.cancelbutton = new System.Windows.Forms.Button();
  32. this.myProgressBar1 = new 进度条显示百分比.MyProgressBar();
  33. this.SuspendLayout();
  34. //
  35. // textBox1
  36. //
  37. this.textBox1.Location = new System.Drawing.Point(30, 69);
  38. this.textBox1.Multiline = true;
  39. this.textBox1.Name = "textBox1";
  40. this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  41. this.textBox1.Size = new System.Drawing.Size(637, 324);
  42. this.textBox1.TabIndex = 1;
  43. this.textBox1.WordWrap = false;
  44. this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
  45. //
  46. // button1
  47. //
  48. this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
  49. this.button1.Location = new System.Drawing.Point(374, 415);
  50. this.button1.Name = "button1";
  51. this.button1.Size = new System.Drawing.Size(121, 34);
  52. this.button1.TabIndex = 2;
  53. this.button1.Text = "确定";
  54. this.button1.UseVisualStyleBackColor = true;
  55. this.button1.Click += new System.EventHandler(this.button1_Click);
  56. //
  57. // cancelbutton
  58. //
  59. this.cancelbutton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  60. this.cancelbutton.Location = new System.Drawing.Point(178, 415);
  61. this.cancelbutton.Name = "cancelbutton";
  62. this.cancelbutton.Size = new System.Drawing.Size(121, 34);
  63. this.cancelbutton.TabIndex = 3;
  64. this.cancelbutton.Text = "取消";
  65. this.cancelbutton.UseVisualStyleBackColor = true;
  66. this.cancelbutton.Click += new System.EventHandler(this.cancelbutton_Click);
  67. //
  68. // myProgressBar1
  69. //
  70. this.myProgressBar1.Location = new System.Drawing.Point(30, 26);
  71. this.myProgressBar1.Name = "myProgressBar1";
  72. this.myProgressBar1.Size = new System.Drawing.Size(637, 23);
  73. this.myProgressBar1.TabIndex = 0;
  74. this.myProgressBar1.Click += new System.EventHandler(this.myProgressBar1_Click);
  75. //
  76. // ProgressBar
  77. //
  78. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  79. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  80. this.ClientSize = new System.Drawing.Size(693, 470);
  81. this.ControlBox = false;
  82. this.Controls.Add(this.cancelbutton);
  83. this.Controls.Add(this.button1);
  84. this.Controls.Add(this.textBox1);
  85. this.Controls.Add(this.myProgressBar1);
  86. this.Name = "ProgressBar";
  87. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  88. this.Text = "文件上传中";
  89. this.TopMost = true;
  90. this.ResumeLayout(false);
  91. this.PerformLayout();
  92. }
  93. #endregion
  94. private 进度条显示百分比.MyProgressBar myProgressBar1;
  95. private System.Windows.Forms.TextBox textBox1;
  96. private System.Windows.Forms.Button button1;
  97. private System.Windows.Forms.Button cancelbutton;
  98. }
  99. }