WaitingForm.Designer.cs 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. namespace WWPipeLine.MapTools.Conditions
  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.Location = new System.Drawing.Point(0, 0);
  39. this.uiProgressIndicator1.MinimumSize = new System.Drawing.Size(1, 1);
  40. this.uiProgressIndicator1.Name = "uiProgressIndicator1";
  41. this.uiProgressIndicator1.Size = new System.Drawing.Size(303, 100);
  42. this.uiProgressIndicator1.TabIndex = 0;
  43. this.uiProgressIndicator1.Text = "uiProgressIndicator1";
  44. //
  45. // timerS
  46. //
  47. this.timerS.Enabled = true;
  48. this.timerS.Interval = 500;
  49. this.timerS.Tick += new System.EventHandler(this.timerS_Tick);
  50. //
  51. // uiLineMsg
  52. //
  53. this.uiLineMsg.Dock = System.Windows.Forms.DockStyle.Top;
  54. this.uiLineMsg.Font = new System.Drawing.Font("微软雅黑", 12F);
  55. this.uiLineMsg.Location = new System.Drawing.Point(0, 100);
  56. this.uiLineMsg.MinimumSize = new System.Drawing.Size(2, 2);
  57. this.uiLineMsg.Name = "uiLineMsg";
  58. this.uiLineMsg.Size = new System.Drawing.Size(303, 29);
  59. this.uiLineMsg.TabIndex = 1;
  60. this.uiLineMsg.Text = "正在操作,请稍后";
  61. //
  62. // WaitingForm
  63. //
  64. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  65. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  66. this.ClientSize = new System.Drawing.Size(303, 149);
  67. this.Controls.Add(this.uiLineMsg);
  68. this.Controls.Add(this.uiProgressIndicator1);
  69. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  70. this.MaximizeBox = false;
  71. this.MinimizeBox = false;
  72. this.Name = "WaitingForm";
  73. this.ShowInTaskbar = false;
  74. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  75. this.Text = "WaitingForm";
  76. this.TopMost = true;
  77. this.Shown += new System.EventHandler(this.WaitingForm_Shown);
  78. this.ResumeLayout(false);
  79. }
  80. #endregion
  81. private Sunny.UI.UIProgressIndicator uiProgressIndicator1;
  82. private System.Windows.Forms.Timer timerS;
  83. private Sunny.UI.UILine uiLineMsg;
  84. }
  85. }