| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- namespace Update
- {
- partial class Form1
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要修改
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
- this.stepProgressLabel = new System.Windows.Forms.Label();
- this.stepProgressBar = new System.Windows.Forms.ProgressBar();
- this.SuspendLayout();
- //
- // stepProgressLabel
- //
- this.stepProgressLabel.AutoSize = true;
- this.stepProgressLabel.Location = new System.Drawing.Point(12, 42);
- this.stepProgressLabel.Name = "stepProgressLabel";
- this.stepProgressLabel.Size = new System.Drawing.Size(53, 12);
- this.stepProgressLabel.TabIndex = 3;
- this.stepProgressLabel.Text = "检查更新";
- //
- // stepProgressBar
- //
- this.stepProgressBar.Location = new System.Drawing.Point(12, 12);
- this.stepProgressBar.Name = "stepProgressBar";
- this.stepProgressBar.Size = new System.Drawing.Size(400, 20);
- this.stepProgressBar.Step = 1;
- this.stepProgressBar.TabIndex = 2;
- //
- // Form1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(425, 69);
- this.Controls.Add(this.stepProgressLabel);
- this.Controls.Add(this.stepProgressBar);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "Form1";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "大教研升级程序";
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Label stepProgressLabel;
- private System.Windows.Forms.ProgressBar stepProgressBar;
- }
- }
|