Form1.Designer.cs 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. 
  2. namespace PTMedicalInsurance.Forms
  3. {
  4. partial class frmProcessBar
  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.progressBar1 = new System.Windows.Forms.ProgressBar();
  30. this.progressBar = new System.Windows.Forms.ProgressBar();
  31. this.SuspendLayout();
  32. //
  33. // progressBar1
  34. //
  35. this.progressBar1.Location = new System.Drawing.Point(324, 25);
  36. this.progressBar1.Name = "progressBar1";
  37. this.progressBar1.Size = new System.Drawing.Size(100, 23);
  38. this.progressBar1.TabIndex = 0;
  39. //
  40. // progressBar
  41. //
  42. this.progressBar.Dock = System.Windows.Forms.DockStyle.Fill;
  43. this.progressBar.Location = new System.Drawing.Point(0, 0);
  44. this.progressBar.Name = "progressBar";
  45. this.progressBar.Size = new System.Drawing.Size(740, 37);
  46. this.progressBar.TabIndex = 1;
  47. //
  48. // frmProcessBar
  49. //
  50. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  51. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  52. this.ClientSize = new System.Drawing.Size(740, 37);
  53. this.Controls.Add(this.progressBar);
  54. this.Controls.Add(this.progressBar1);
  55. this.Name = "frmProcessBar";
  56. this.Text = "进度展示";
  57. this.ResumeLayout(false);
  58. }
  59. #endregion
  60. private System.Windows.Forms.ProgressBar progressBar1;
  61. private System.Windows.Forms.ProgressBar progressBar;
  62. }
  63. }