progress2.cs 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. using System.ComponentModel;
  2. using System.Diagnostics;
  3. using System.Drawing;
  4. using System.Runtime.CompilerServices;
  5. using System.Windows.Forms;
  6. using Microsoft.VisualBasic.CompilerServices;
  7. namespace Dongke.IBOSS.PRD.Framework.Controls
  8. {
  9. [DesignerGenerated]
  10. [EditorBrowsable(EditorBrowsableState.Never)]
  11. public class progress2 : Form
  12. {
  13. private IContainer components;
  14. [AccessedThroughProperty("Label1")]
  15. private Label _Label1;
  16. internal virtual Label Label1
  17. {
  18. get
  19. {
  20. return _Label1;
  21. }
  22. [MethodImpl(MethodImplOptions.Synchronized)]
  23. set
  24. {
  25. _Label1 = value;
  26. }
  27. }
  28. public progress2()
  29. {
  30. InitializeComponent();
  31. }
  32. [DebuggerNonUserCode]
  33. protected override void Dispose(bool disposing)
  34. {
  35. try
  36. {
  37. if (disposing && components != null)
  38. {
  39. components.Dispose();
  40. }
  41. }
  42. finally
  43. {
  44. base.Dispose(disposing);
  45. }
  46. }
  47. [System.Diagnostics.DebuggerStepThrough]
  48. private void InitializeComponent()
  49. {
  50. this.Label1 = new System.Windows.Forms.Label();
  51. base.SuspendLayout();
  52. this.Label1.BackColor = System.Drawing.SystemColors.Control;
  53. this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  54. this.Label1.Dock = System.Windows.Forms.DockStyle.Fill;
  55. this.Label1.Font = new System.Drawing.Font("宋体", 9f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134);
  56. this.Label1.ForeColor = System.Drawing.SystemColors.ControlText;
  57. System.Windows.Forms.Control label = this.Label1;
  58. System.Drawing.Point location = new System.Drawing.Point(0, 0);
  59. label.Location = location;
  60. this.Label1.Name = "Label1";
  61. System.Windows.Forms.Control label2 = this.Label1;
  62. System.Drawing.Size size = new System.Drawing.Size(230, 56);
  63. label2.Size = size;
  64. this.Label1.TabIndex = 0;
  65. this.Label1.Text = "正在努力处理中,请稍侯……";
  66. this.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  67. System.Drawing.SizeF sizeF = new System.Drawing.SizeF(6f, 12f);
  68. base.AutoScaleDimensions = sizeF;
  69. base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  70. size = new System.Drawing.Size(230, 56);
  71. base.ClientSize = size;
  72. base.Controls.Add(this.Label1);
  73. base.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  74. base.MaximizeBox = false;
  75. base.Name = "progress2";
  76. base.ShowIcon = false;
  77. base.ShowInTaskbar = false;
  78. base.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  79. this.Text = "progress";
  80. base.TopMost = true;
  81. base.ResumeLayout(false);
  82. }
  83. }
  84. }