| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- 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]
- [EditorBrowsable(EditorBrowsableState.Never)]
- public class progress2 : Form
- {
- private IContainer components;
- [AccessedThroughProperty("Label1")]
- private Label _Label1;
- internal virtual Label Label1
- {
- get
- {
- return _Label1;
- }
- [MethodImpl(MethodImplOptions.Synchronized)]
- set
- {
- _Label1 = value;
- }
- }
- public progress2()
- {
- InitializeComponent();
- }
- [DebuggerNonUserCode]
- protected override void Dispose(bool disposing)
- {
- try
- {
- if (disposing && components != null)
- {
- components.Dispose();
- }
- }
- finally
- {
- base.Dispose(disposing);
- }
- }
- [System.Diagnostics.DebuggerStepThrough]
- private void InitializeComponent()
- {
- this.Label1 = new System.Windows.Forms.Label();
- base.SuspendLayout();
- this.Label1.BackColor = System.Drawing.SystemColors.Control;
- this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
- this.Label1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.Label1.Font = new System.Drawing.Font("宋体", 9f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134);
- this.Label1.ForeColor = System.Drawing.SystemColors.ControlText;
- System.Windows.Forms.Control label = this.Label1;
- System.Drawing.Point location = new System.Drawing.Point(0, 0);
- label.Location = location;
- this.Label1.Name = "Label1";
- System.Windows.Forms.Control label2 = this.Label1;
- System.Drawing.Size size = new System.Drawing.Size(230, 56);
- 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;
- size = new System.Drawing.Size(230, 56);
- base.ClientSize = size;
- base.Controls.Add(this.Label1);
- base.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- base.MaximizeBox = false;
- base.Name = "progress2";
- base.ShowIcon = false;
- base.ShowInTaskbar = false;
- base.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "progress";
- base.TopMost = true;
- base.ResumeLayout(false);
- }
- }
- }
|