frmWaitingBox.designer.cs 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. namespace IntelligentControlForsx
  2. {
  3. partial class frmWaitingBox
  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.panel1 = new System.Windows.Forms.Panel();
  30. this.labTimer = new System.Windows.Forms.Label();
  31. this.pictureBoxCancel = new System.Windows.Forms.PictureBox();
  32. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  33. this.labMessage = new System.Windows.Forms.Label();
  34. this.timer1 = new System.Windows.Forms.Timer(this.components);
  35. this.panel1.SuspendLayout();
  36. ((System.ComponentModel.ISupportInitialize)(this.pictureBoxCancel)).BeginInit();
  37. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  38. this.SuspendLayout();
  39. //
  40. // panel1
  41. //
  42. this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  43. this.panel1.Controls.Add(this.labTimer);
  44. this.panel1.Controls.Add(this.pictureBoxCancel);
  45. this.panel1.Controls.Add(this.pictureBox1);
  46. this.panel1.Controls.Add(this.labMessage);
  47. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  48. this.panel1.Location = new System.Drawing.Point(4, 4);
  49. this.panel1.Name = "panel1";
  50. this.panel1.Size = new System.Drawing.Size(345, 148);
  51. this.panel1.TabIndex = 0;
  52. //
  53. // labTimer
  54. //
  55. this.labTimer.AutoSize = true;
  56. this.labTimer.Font = new System.Drawing.Font("Tahoma", 9.5F);
  57. this.labTimer.ForeColor = System.Drawing.Color.Red;
  58. this.labTimer.Location = new System.Drawing.Point(155, 77);
  59. this.labTimer.Name = "labTimer";
  60. this.labTimer.Size = new System.Drawing.Size(30, 16);
  61. this.labTimer.TabIndex = 6;
  62. this.labTimer.Text = "0秒";
  63. //
  64. // pictureBoxCancel
  65. //
  66. this.pictureBoxCancel.Cursor = System.Windows.Forms.Cursors.Hand;
  67. this.pictureBoxCancel.Image = global::IntelligentControlForsx.Properties.Resources._return;
  68. this.pictureBoxCancel.Location = new System.Drawing.Point(271, 111);
  69. this.pictureBoxCancel.Name = "pictureBoxCancel";
  70. this.pictureBoxCancel.Size = new System.Drawing.Size(60, 30);
  71. this.pictureBoxCancel.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  72. this.pictureBoxCancel.TabIndex = 5;
  73. this.pictureBoxCancel.TabStop = false;
  74. this.pictureBoxCancel.Click += new System.EventHandler(this.btnCancel_Click);
  75. //
  76. // pictureBox1
  77. //
  78. this.pictureBox1.Image = global::IntelligentControlForsx.Properties.Resources.waiting;
  79. this.pictureBox1.Location = new System.Drawing.Point(3, 8);
  80. this.pictureBox1.Name = "pictureBox1";
  81. this.pictureBox1.Size = new System.Drawing.Size(143, 133);
  82. this.pictureBox1.TabIndex = 3;
  83. this.pictureBox1.TabStop = false;
  84. //
  85. // labMessage
  86. //
  87. this.labMessage.AutoSize = true;
  88. this.labMessage.Font = new System.Drawing.Font("Tahoma", 9.5F);
  89. this.labMessage.Location = new System.Drawing.Point(152, 54);
  90. this.labMessage.Name = "labMessage";
  91. this.labMessage.Size = new System.Drawing.Size(170, 16);
  92. this.labMessage.TabIndex = 0;
  93. this.labMessage.Text = "正在处理数据,请稍后...";
  94. //
  95. // timer1
  96. //
  97. this.timer1.Interval = 1000;
  98. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  99. //
  100. // frmWaitingBox
  101. //
  102. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  103. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  104. this.BackColor = System.Drawing.Color.PaleTurquoise;
  105. this.ClientSize = new System.Drawing.Size(353, 156);
  106. this.Controls.Add(this.panel1);
  107. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  108. this.Name = "frmWaitingBox";
  109. this.Padding = new System.Windows.Forms.Padding(4);
  110. this.Text = "frmWaitingBox";
  111. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmWaitingBox_FormClosing);
  112. this.Shown += new System.EventHandler(this.frmWaitingBox_Shown);
  113. this.panel1.ResumeLayout(false);
  114. this.panel1.PerformLayout();
  115. ((System.ComponentModel.ISupportInitialize)(this.pictureBoxCancel)).EndInit();
  116. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  117. this.ResumeLayout(false);
  118. }
  119. #endregion
  120. private System.Windows.Forms.Panel panel1;
  121. private System.Windows.Forms.PictureBox pictureBox1;
  122. private System.Windows.Forms.Label labMessage;
  123. private System.Windows.Forms.PictureBox pictureBoxCancel;
  124. private System.Windows.Forms.Label labTimer;
  125. private System.Windows.Forms.Timer timer1;
  126. }
  127. }