WaitingForm.Designer.cs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. namespace WWPipeLine.MapBasic
  2. {
  3. partial class WaitingForm
  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.components = new System.ComponentModel.Container();
  29. this.uiProgressIndicator1 = new Sunny.UI.UIProgressIndicator();
  30. this.timerS = new System.Windows.Forms.Timer(this.components);
  31. this.uiLineMsg = new Sunny.UI.UILine();
  32. this.SuspendLayout();
  33. //
  34. // uiProgressIndicator1
  35. //
  36. this.uiProgressIndicator1.Dock = System.Windows.Forms.DockStyle.Top;
  37. this.uiProgressIndicator1.Font = new System.Drawing.Font("微软雅黑", 12F);
  38. this.uiProgressIndicator1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  39. this.uiProgressIndicator1.Location = new System.Drawing.Point(0, 0);
  40. this.uiProgressIndicator1.MinimumSize = new System.Drawing.Size(1, 1);
  41. this.uiProgressIndicator1.Name = "uiProgressIndicator1";
  42. this.uiProgressIndicator1.Size = new System.Drawing.Size(160, 39);
  43. this.uiProgressIndicator1.Style = Sunny.UI.UIStyle.Gray;
  44. this.uiProgressIndicator1.TabIndex = 0;
  45. this.uiProgressIndicator1.Text = "uiProgressIndicator1";
  46. //
  47. // timerS
  48. //
  49. this.timerS.Enabled = true;
  50. this.timerS.Interval = 500;
  51. this.timerS.Tick += new System.EventHandler(this.timerS_Tick);
  52. //
  53. // uiLineMsg
  54. //
  55. this.uiLineMsg.Dock = System.Windows.Forms.DockStyle.Top;
  56. this.uiLineMsg.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(244)))));
  57. this.uiLineMsg.Font = new System.Drawing.Font("微软雅黑", 12F);
  58. this.uiLineMsg.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  59. this.uiLineMsg.Location = new System.Drawing.Point(0, 39);
  60. this.uiLineMsg.MinimumSize = new System.Drawing.Size(2, 2);
  61. this.uiLineMsg.Name = "uiLineMsg";
  62. this.uiLineMsg.Size = new System.Drawing.Size(160, 29);
  63. this.uiLineMsg.Style = Sunny.UI.UIStyle.Gray;
  64. this.uiLineMsg.TabIndex = 1;
  65. this.uiLineMsg.Text = "正在操作,请稍后";
  66. //
  67. // WaitingForm
  68. //
  69. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  70. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  71. this.ClientSize = new System.Drawing.Size(160, 70);
  72. this.Controls.Add(this.uiLineMsg);
  73. this.Controls.Add(this.uiProgressIndicator1);
  74. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  75. this.MaximizeBox = false;
  76. this.MinimizeBox = false;
  77. this.Name = "WaitingForm";
  78. this.ShowInTaskbar = false;
  79. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  80. this.Text = "WaitingForm";
  81. this.TopMost = true;
  82. this.Shown += new System.EventHandler(this.WaitingForm_Shown);
  83. this.ResumeLayout(false);
  84. }
  85. #endregion
  86. private Sunny.UI.UIProgressIndicator uiProgressIndicator1;
  87. private System.Windows.Forms.Timer timerS;
  88. private Sunny.UI.UILine uiLineMsg;
  89. }
  90. }