LoadProgress.Designer.cs 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. namespace LYFZ.ComponentLibrary
  2. {
  3. partial class LoadProgress
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LoadProgress));
  29. this.lbLoadProgress = new System.Windows.Forms.Label();
  30. this.SuspendLayout();
  31. //
  32. // lbLoadProgress
  33. //
  34. this.lbLoadProgress.BackColor = System.Drawing.Color.White;
  35. this.lbLoadProgress.Dock = System.Windows.Forms.DockStyle.Fill;
  36. this.lbLoadProgress.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  37. this.lbLoadProgress.ForeColor = System.Drawing.Color.Teal;
  38. this.lbLoadProgress.Image = ((System.Drawing.Image)(resources.GetObject("lbLoadProgress.Image")));
  39. this.lbLoadProgress.ImageAlign = System.Drawing.ContentAlignment.BottomCenter;
  40. this.lbLoadProgress.Location = new System.Drawing.Point(0, 0);
  41. this.lbLoadProgress.Name = "lbLoadProgress";
  42. this.lbLoadProgress.Padding = new System.Windows.Forms.Padding(0, 5, 0, 0);
  43. this.lbLoadProgress.Size = new System.Drawing.Size(190, 48);
  44. this.lbLoadProgress.TabIndex = 0;
  45. this.lbLoadProgress.Text = "正在处理,请稍等...";
  46. this.lbLoadProgress.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  47. //
  48. // LoadProgress
  49. //
  50. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  51. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  52. this.BackColor = System.Drawing.Color.CornflowerBlue;
  53. this.Controls.Add(this.lbLoadProgress);
  54. this.Margin = new System.Windows.Forms.Padding(0);
  55. this.Name = "LoadProgress";
  56. this.Size = new System.Drawing.Size(190, 48);
  57. this.ResumeLayout(false);
  58. }
  59. #endregion
  60. private System.Windows.Forms.Label lbLoadProgress;
  61. }
  62. }