mywait.cs 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. using System;
  2. using System.ComponentModel;
  3. using System.Diagnostics;
  4. using System.Drawing;
  5. using System.Runtime.CompilerServices;
  6. using System.Windows.Forms;
  7. using Microsoft.VisualBasic.CompilerServices;
  8. namespace Dongke.IBOSS.PRD.Framework.Controls
  9. {
  10. [DesignerGenerated]
  11. internal class mywait : 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. [DebuggerNonUserCode]
  29. public mywait()
  30. {
  31. base.Load += mywait_Load;
  32. InitializeComponent();
  33. }
  34. [DebuggerNonUserCode]
  35. protected override void Dispose(bool Disposing)
  36. {
  37. if (Disposing && components != null)
  38. {
  39. components.Dispose();
  40. }
  41. base.Dispose(Disposing);
  42. }
  43. [System.Diagnostics.DebuggerStepThrough]
  44. private void InitializeComponent()
  45. {
  46. this.components = new System.ComponentModel.Container();
  47. this.Label1 = new System.Windows.Forms.Label();
  48. base.SuspendLayout();
  49. this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  50. this.Label1.Font = new System.Drawing.Font("宋体", 9f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134);
  51. System.Windows.Forms.Control label = this.Label1;
  52. System.Drawing.Point location = new System.Drawing.Point(7, 8);
  53. label.Location = location;
  54. this.Label1.Name = "Label1";
  55. System.Windows.Forms.Control label2 = this.Label1;
  56. System.Drawing.Size size = new System.Drawing.Size(252, 71);
  57. label2.Size = size;
  58. this.Label1.TabIndex = 0;
  59. this.Label1.Text = "正在读取报表模板,请稍侯……";
  60. this.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  61. System.Drawing.SizeF sizeF = new System.Drawing.SizeF(6f, 12f);
  62. base.AutoScaleDimensions = sizeF;
  63. base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  64. this.BackColor = System.Drawing.SystemColors.Control;
  65. size = new System.Drawing.Size(264, 81);
  66. base.ClientSize = size;
  67. base.ControlBox = false;
  68. base.Controls.Add(this.Label1);
  69. this.Cursor = System.Windows.Forms.Cursors.Default;
  70. base.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  71. location = new System.Drawing.Point(1, 1);
  72. base.Location = location;
  73. base.MaximizeBox = false;
  74. base.MinimizeBox = false;
  75. base.Name = "mywait";
  76. this.RightToLeft = System.Windows.Forms.RightToLeft.No;
  77. base.ShowIcon = false;
  78. base.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  79. base.TopMost = true;
  80. base.ResumeLayout(false);
  81. }
  82. private void mywait_Load(object eventSender, EventArgs eventArgs)
  83. {
  84. base.Visible = true;
  85. }
  86. }
  87. }