#0012:新增etalon 文件格式的解析与可视化,和控制
This commit is contained in:
Generated
+121
@@ -0,0 +1,121 @@
|
||||
namespace HexcalMC
|
||||
{
|
||||
partial class DemoShow
|
||||
{
|
||||
/// <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();
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DemoShow));
|
||||
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
||||
this.btn_StartShow = new System.Windows.Forms.Button();
|
||||
this.btn_StopShow = new System.Windows.Forms.Button();
|
||||
this.lable_showstatus = new System.Windows.Forms.Label();
|
||||
this.timer_UI = new System.Windows.Forms.Timer(this.components);
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// pictureBox1
|
||||
//
|
||||
this.pictureBox1.Image = global::HexcalMC.Properties.Resources.demo_show_128;
|
||||
this.pictureBox1.Location = new System.Drawing.Point(48, 33);
|
||||
this.pictureBox1.Name = "pictureBox1";
|
||||
this.pictureBox1.Size = new System.Drawing.Size(128, 128);
|
||||
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
||||
this.pictureBox1.TabIndex = 0;
|
||||
this.pictureBox1.TabStop = false;
|
||||
//
|
||||
// btn_StartShow
|
||||
//
|
||||
this.btn_StartShow.Location = new System.Drawing.Point(270, 199);
|
||||
this.btn_StartShow.Name = "btn_StartShow";
|
||||
this.btn_StartShow.Size = new System.Drawing.Size(100, 40);
|
||||
this.btn_StartShow.TabIndex = 1;
|
||||
this.btn_StartShow.Text = "开始演示";
|
||||
this.btn_StartShow.UseVisualStyleBackColor = true;
|
||||
this.btn_StartShow.Click += new System.EventHandler(this.btn_StartShow_Click);
|
||||
//
|
||||
// btn_StopShow
|
||||
//
|
||||
this.btn_StopShow.Location = new System.Drawing.Point(407, 199);
|
||||
this.btn_StopShow.Name = "btn_StopShow";
|
||||
this.btn_StopShow.Size = new System.Drawing.Size(100, 40);
|
||||
this.btn_StopShow.TabIndex = 2;
|
||||
this.btn_StopShow.Text = "停止演示";
|
||||
this.btn_StopShow.UseVisualStyleBackColor = true;
|
||||
this.btn_StopShow.Click += new System.EventHandler(this.btn_StopShow_Click);
|
||||
//
|
||||
// lable_showstatus
|
||||
//
|
||||
this.lable_showstatus.AutoSize = true;
|
||||
this.lable_showstatus.Font = new System.Drawing.Font("Segoe UI", 18F);
|
||||
this.lable_showstatus.Location = new System.Drawing.Point(228, 83);
|
||||
this.lable_showstatus.Name = "lable_showstatus";
|
||||
this.lable_showstatus.Size = new System.Drawing.Size(89, 32);
|
||||
this.lable_showstatus.TabIndex = 3;
|
||||
this.lable_showstatus.Text = "未演示";
|
||||
//
|
||||
// timer_UI
|
||||
//
|
||||
this.timer_UI.Interval = 1000;
|
||||
this.timer_UI.Tick += new System.EventHandler(this.timer_UI_Tick);
|
||||
//
|
||||
// DemoShow
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.BackColor = System.Drawing.SystemColors.Control;
|
||||
this.ClientSize = new System.Drawing.Size(519, 251);
|
||||
this.Controls.Add(this.lable_showstatus);
|
||||
this.Controls.Add(this.btn_StopShow);
|
||||
this.Controls.Add(this.btn_StartShow);
|
||||
this.Controls.Add(this.pictureBox1);
|
||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||
this.Name = "DemoShow";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.RootElement.ApplyShapeToControl = true;
|
||||
this.Text = "演示模式";
|
||||
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.DemoShow_FormClosing);
|
||||
this.Load += new System.EventHandler(this.DemoShow_Load);
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.PictureBox pictureBox1;
|
||||
private System.Windows.Forms.Button btn_StartShow;
|
||||
private System.Windows.Forms.Button btn_StopShow;
|
||||
private System.Windows.Forms.Label lable_showstatus;
|
||||
private System.Windows.Forms.Timer timer_UI;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user