ExecutionProgress.Designer.cs 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. namespace LYFZ.ComponentLibrary
  2. {
  3. partial class ExecutionProgress
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.lbLoadProgress = new System.Windows.Forms.Label();
  29. this.sProgressBar = new LYFZ.OtherExpansion.SkinControl.SkinProgressBar();
  30. this.SuspendLayout();
  31. //
  32. // lbLoadProgress
  33. //
  34. this.lbLoadProgress.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  35. | System.Windows.Forms.AnchorStyles.Left)
  36. | System.Windows.Forms.AnchorStyles.Right)));
  37. this.lbLoadProgress.BackColor = System.Drawing.Color.White;
  38. this.lbLoadProgress.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  39. this.lbLoadProgress.ForeColor = System.Drawing.Color.Teal;
  40. this.lbLoadProgress.ImageAlign = System.Drawing.ContentAlignment.BottomCenter;
  41. this.lbLoadProgress.Location = new System.Drawing.Point(1, 1);
  42. this.lbLoadProgress.Name = "lbLoadProgress";
  43. this.lbLoadProgress.Padding = new System.Windows.Forms.Padding(0, 5, 0, 0);
  44. this.lbLoadProgress.Size = new System.Drawing.Size(278, 46);
  45. this.lbLoadProgress.TabIndex = 1;
  46. this.lbLoadProgress.Text = "正在处理,请稍等...";
  47. this.lbLoadProgress.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  48. //
  49. // sProgressBar
  50. //
  51. this.sProgressBar.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  52. | System.Windows.Forms.AnchorStyles.Left)
  53. | System.Windows.Forms.AnchorStyles.Right)));
  54. this.sProgressBar.Back = null;
  55. this.sProgressBar.BarBack = null;
  56. this.sProgressBar.ForeColor = System.Drawing.Color.Red;
  57. this.sProgressBar.Location = new System.Drawing.Point(1, 24);
  58. this.sProgressBar.Maximum = 1000;
  59. this.sProgressBar.Name = "sProgressBar";
  60. this.sProgressBar.Size = new System.Drawing.Size(278, 23);
  61. this.sProgressBar.TabIndex = 2;
  62. this.sProgressBar.TrackBack = System.Drawing.Color.Silver;
  63. //
  64. // ExecutionProgress
  65. //
  66. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  67. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  68. this.BackColor = System.Drawing.Color.CornflowerBlue;
  69. this.Controls.Add(this.sProgressBar);
  70. this.Controls.Add(this.lbLoadProgress);
  71. this.Name = "ExecutionProgress";
  72. this.Size = new System.Drawing.Size(280, 48);
  73. this.ResumeLayout(false);
  74. }
  75. #endregion
  76. private System.Windows.Forms.Label lbLoadProgress;
  77. private OtherExpansion.SkinControl.SkinProgressBar sProgressBar;
  78. }
  79. }