| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- using System;
- using System.ComponentModel;
- using System.Diagnostics;
- using System.Drawing;
- using System.Runtime.CompilerServices;
- using System.Windows.Forms;
- using Microsoft.VisualBasic.CompilerServices;
- namespace Dongke.IBOSS.PRD.Framework.Controls
- {
- [DesignerGenerated]
- internal class mywait : Form
- {
- private IContainer components;
- [AccessedThroughProperty("Label1")]
- private Label _Label1;
- internal virtual Label Label1
- {
- get
- {
- return _Label1;
- }
- [MethodImpl(MethodImplOptions.Synchronized)]
- set
- {
- _Label1 = value;
- }
- }
- [DebuggerNonUserCode]
- public mywait()
- {
- base.Load += mywait_Load;
- InitializeComponent();
- }
- [DebuggerNonUserCode]
- protected override void Dispose(bool Disposing)
- {
- if (Disposing && components != null)
- {
- components.Dispose();
- }
- base.Dispose(Disposing);
- }
- [System.Diagnostics.DebuggerStepThrough]
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- this.Label1 = new System.Windows.Forms.Label();
- base.SuspendLayout();
- this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
- this.Label1.Font = new System.Drawing.Font("宋体", 9f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134);
- System.Windows.Forms.Control label = this.Label1;
- System.Drawing.Point location = new System.Drawing.Point(7, 8);
- label.Location = location;
- this.Label1.Name = "Label1";
- System.Windows.Forms.Control label2 = this.Label1;
- System.Drawing.Size size = new System.Drawing.Size(252, 71);
- label2.Size = size;
- this.Label1.TabIndex = 0;
- this.Label1.Text = "正在读取报表模板,请稍侯……";
- this.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- System.Drawing.SizeF sizeF = new System.Drawing.SizeF(6f, 12f);
- base.AutoScaleDimensions = sizeF;
- base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.SystemColors.Control;
- size = new System.Drawing.Size(264, 81);
- base.ClientSize = size;
- base.ControlBox = false;
- base.Controls.Add(this.Label1);
- this.Cursor = System.Windows.Forms.Cursors.Default;
- base.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
- location = new System.Drawing.Point(1, 1);
- base.Location = location;
- base.MaximizeBox = false;
- base.MinimizeBox = false;
- base.Name = "mywait";
- this.RightToLeft = System.Windows.Forms.RightToLeft.No;
- base.ShowIcon = false;
- base.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- base.TopMost = true;
- base.ResumeLayout(false);
- }
- private void mywait_Load(object eventSender, EventArgs eventArgs)
- {
- base.Visible = true;
- }
- }
- }
|