123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- namespace NXWMS.Forms
- {
- partial class frmLoading
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- this.panel1 = new System.Windows.Forms.Panel();
- this.kryptonPanel = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
- this.pictureBox1 = new System.Windows.Forms.PictureBox();
- this.lbMessage = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
- this.timer = new System.Windows.Forms.Timer(this.components);
- this.panel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel)).BeginInit();
- this.kryptonPanel.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
- this.SuspendLayout();
- //
- // panel1
- //
- this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel1.Controls.Add(this.kryptonPanel);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel1.Location = new System.Drawing.Point(0, 0);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(320, 49);
- this.panel1.TabIndex = 1;
- //
- // kryptonPanel
- //
- this.kryptonPanel.Controls.Add(this.pictureBox1);
- this.kryptonPanel.Controls.Add(this.lbMessage);
- this.kryptonPanel.Dock = System.Windows.Forms.DockStyle.Fill;
- this.kryptonPanel.Location = new System.Drawing.Point(0, 0);
- this.kryptonPanel.Name = "kryptonPanel";
- this.kryptonPanel.PanelBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.ButtonCustom1;
- this.kryptonPanel.Size = new System.Drawing.Size(318, 47);
- this.kryptonPanel.TabIndex = 1;
- //
- // pictureBox1
- //
- this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
- this.pictureBox1.Image = global::NXWMS.Properties.Resources.loading;
- this.pictureBox1.Location = new System.Drawing.Point(15, 6);
- this.pictureBox1.Name = "pictureBox1";
- this.pictureBox1.Size = new System.Drawing.Size(35, 34);
- this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
- this.pictureBox1.TabIndex = 1;
- this.pictureBox1.TabStop = false;
- //
- // lbMessage
- //
- this.lbMessage.AutoSize = false;
- this.lbMessage.Font = new System.Drawing.Font("微软雅黑", 80F);
- this.lbMessage.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.BoldControl;
- this.lbMessage.Location = new System.Drawing.Point(71, 11);
- this.lbMessage.Name = "lbMessage";
- this.lbMessage.Size = new System.Drawing.Size(244, 25);
- this.lbMessage.TabIndex = 0;
- this.lbMessage.Values.Text = "正在加载数据中...";
- //
- // timer
- //
- this.timer.Enabled = true;
- this.timer.Interval = 500;
- this.timer.Tick += new System.EventHandler(this.timer_Tick);
- //
- // frmLoading
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(320, 49);
- this.ControlBox = false;
- this.Controls.Add(this.panel1);
- this.DoubleBuffered = true;
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.GroupBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.ButtonGallery;
- this.GroupBorderStyle = ComponentFactory.Krypton.Toolkit.PaletteBorderStyle.ButtonCustom2;
- this.HeaderStyle = ComponentFactory.Krypton.Toolkit.HeaderStyle.Primary;
- this.Name = "frmLoading";
- this.Opacity = 0.8D;
- this.ShowInTaskbar = false;
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "frmLoading";
- this.TopMost = true;
- this.panel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel)).EndInit();
- this.kryptonPanel.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Panel panel1;
- private ComponentFactory.Krypton.Toolkit.KryptonPanel kryptonPanel;
- private ComponentFactory.Krypton.Toolkit.KryptonLabel lbMessage;
- private System.Windows.Forms.PictureBox pictureBox1;
- private System.Windows.Forms.Timer timer;
- }
- }
|