12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- namespace WWPipeLine.MapTools.Conditions
- {
- partial class WaitingForm
- {
- /// <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.uiProgressIndicator1 = new Sunny.UI.UIProgressIndicator();
- this.timerS = new System.Windows.Forms.Timer(this.components);
- this.uiLineMsg = new Sunny.UI.UILine();
- this.SuspendLayout();
- //
- // uiProgressIndicator1
- //
- this.uiProgressIndicator1.Dock = System.Windows.Forms.DockStyle.Top;
- this.uiProgressIndicator1.Font = new System.Drawing.Font("微软雅黑", 12F);
- this.uiProgressIndicator1.Location = new System.Drawing.Point(0, 0);
- this.uiProgressIndicator1.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiProgressIndicator1.Name = "uiProgressIndicator1";
- this.uiProgressIndicator1.Size = new System.Drawing.Size(303, 100);
- this.uiProgressIndicator1.TabIndex = 0;
- this.uiProgressIndicator1.Text = "uiProgressIndicator1";
- //
- // timerS
- //
- this.timerS.Enabled = true;
- this.timerS.Interval = 500;
- this.timerS.Tick += new System.EventHandler(this.timerS_Tick);
- //
- // uiLineMsg
- //
- this.uiLineMsg.Dock = System.Windows.Forms.DockStyle.Top;
- this.uiLineMsg.Font = new System.Drawing.Font("微软雅黑", 12F);
- this.uiLineMsg.Location = new System.Drawing.Point(0, 100);
- this.uiLineMsg.MinimumSize = new System.Drawing.Size(2, 2);
- this.uiLineMsg.Name = "uiLineMsg";
- this.uiLineMsg.Size = new System.Drawing.Size(303, 29);
- this.uiLineMsg.TabIndex = 1;
- this.uiLineMsg.Text = "正在操作,请稍后";
- //
- // WaitingForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(303, 149);
- this.Controls.Add(this.uiLineMsg);
- this.Controls.Add(this.uiProgressIndicator1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "WaitingForm";
- this.ShowInTaskbar = false;
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
- this.Text = "WaitingForm";
- this.TopMost = true;
- this.Shown += new System.EventHandler(this.WaitingForm_Shown);
- this.ResumeLayout(false);
- }
- #endregion
- private Sunny.UI.UIProgressIndicator uiProgressIndicator1;
- private System.Windows.Forms.Timer timerS;
- private Sunny.UI.UILine uiLineMsg;
- }
- }
|