fg_yida_2/YiDa_WinForm/Form/RodTestUploadForm.Designer.cs

118 lines
5.3 KiB
C#
Raw Normal View History

2026-01-29 08:39:56 +08:00
namespace YiDa_WinForm
{
2026-02-03 10:08:13 +08:00
partial class RodTestUploadForm
2026-01-29 08:39:56 +08:00
{
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.TextBox textBoxInterval;
private System.Windows.Forms.Label labelInterval;
private System.Windows.Forms.Button buttonConfirm;
private System.Windows.Forms.Button buttonCancel;
private System.Windows.Forms.Label labelTitle;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.textBoxInterval = new System.Windows.Forms.TextBox();
this.labelInterval = new System.Windows.Forms.Label();
this.buttonConfirm = new System.Windows.Forms.Button();
this.buttonCancel = new System.Windows.Forms.Button();
this.labelTitle = new System.Windows.Forms.Label();
2026-01-29 20:29:12 +08:00
this.label1 = new System.Windows.Forms.Label();
2026-01-29 08:39:56 +08:00
this.SuspendLayout();
//
// textBoxInterval
//
2026-02-04 09:53:15 +08:00
this.textBoxInterval.Location = new System.Drawing.Point(197, 115);
2026-01-29 08:39:56 +08:00
this.textBoxInterval.Name = "textBoxInterval";
2026-02-03 10:08:13 +08:00
this.textBoxInterval.Size = new System.Drawing.Size(105, 25);
2026-01-29 08:39:56 +08:00
this.textBoxInterval.TabIndex = 4;
this.textBoxInterval.Text = "120";
2026-01-29 20:29:12 +08:00
this.textBoxInterval.TextChanged += new System.EventHandler(this.textBoxInterval_TextChanged);
2026-01-29 08:39:56 +08:00
//
// labelInterval
//
this.labelInterval.AutoSize = true;
2026-02-04 09:53:15 +08:00
this.labelInterval.Location = new System.Drawing.Point(79, 118);
2026-01-29 08:39:56 +08:00
this.labelInterval.Name = "labelInterval";
2026-02-03 10:08:13 +08:00
this.labelInterval.Size = new System.Drawing.Size(112, 15);
2026-01-29 08:39:56 +08:00
this.labelInterval.TabIndex = 3;
2026-02-04 09:53:15 +08:00
this.labelInterval.Text = "延迟报警时间:";
2026-02-03 10:08:13 +08:00
this.labelInterval.Click += new System.EventHandler(this.labelInterval_Click);
2026-01-29 08:39:56 +08:00
//
// buttonConfirm
//
2026-02-04 09:53:15 +08:00
this.buttonConfirm.Location = new System.Drawing.Point(96, 199);
2026-01-29 08:39:56 +08:00
this.buttonConfirm.Name = "buttonConfirm";
2026-01-29 20:29:12 +08:00
this.buttonConfirm.Size = new System.Drawing.Size(86, 32);
2026-01-29 08:39:56 +08:00
this.buttonConfirm.TabIndex = 5;
this.buttonConfirm.Text = "确定";
this.buttonConfirm.Click += new System.EventHandler(this.buttonConfirm_Click);
//
// buttonCancel
//
2026-02-04 09:53:15 +08:00
this.buttonCancel.Location = new System.Drawing.Point(241, 199);
2026-01-29 08:39:56 +08:00
this.buttonCancel.Name = "buttonCancel";
2026-01-29 20:29:12 +08:00
this.buttonCancel.Size = new System.Drawing.Size(86, 32);
2026-01-29 08:39:56 +08:00
this.buttonCancel.TabIndex = 6;
this.buttonCancel.Text = "取消";
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
//
// labelTitle
//
this.labelTitle.AutoSize = true;
this.labelTitle.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold);
2026-02-03 10:08:13 +08:00
this.labelTitle.Location = new System.Drawing.Point(74, 49);
2026-01-29 08:39:56 +08:00
this.labelTitle.Name = "labelTitle";
2026-02-04 09:53:15 +08:00
this.labelTitle.Size = new System.Drawing.Size(292, 27);
2026-01-29 08:39:56 +08:00
this.labelTitle.TabIndex = 0;
2026-02-04 09:53:15 +08:00
this.labelTitle.Text = "连杆图片开机上传延迟报警时间";
2026-02-03 10:08:13 +08:00
this.labelTitle.Click += new System.EventHandler(this.labelTitle_Click);
2026-01-29 08:39:56 +08:00
//
2026-01-29 20:29:12 +08:00
// label1
//
this.label1.AutoSize = true;
2026-02-04 09:53:15 +08:00
this.label1.Location = new System.Drawing.Point(308, 118);
2026-01-29 20:29:12 +08:00
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(37, 15);
this.label1.TabIndex = 7;
this.label1.Text = "分钟";
this.label1.Click += new System.EventHandler(this.label1_Click);
//
2026-02-03 10:08:13 +08:00
// RodTestUploadForm
2026-01-29 08:39:56 +08:00
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
2026-02-03 10:08:13 +08:00
this.BackColor = System.Drawing.SystemColors.Control;
2026-02-04 09:53:15 +08:00
this.ClientSize = new System.Drawing.Size(418, 293);
2026-01-29 20:29:12 +08:00
this.Controls.Add(this.label1);
2026-01-29 08:39:56 +08:00
this.Controls.Add(this.labelTitle);
this.Controls.Add(this.labelInterval);
this.Controls.Add(this.textBoxInterval);
this.Controls.Add(this.buttonConfirm);
this.Controls.Add(this.buttonCancel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
2026-02-03 10:08:13 +08:00
this.Location = new System.Drawing.Point(15, 15);
2026-01-29 08:39:56 +08:00
this.MaximizeBox = false;
this.MinimizeBox = false;
2026-02-03 10:08:13 +08:00
this.Name = "RodTestUploadForm";
2026-01-29 08:39:56 +08:00
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
2026-02-03 10:08:13 +08:00
this.Text = "连杆测试上传";
2026-01-29 08:39:56 +08:00
this.ResumeLayout(false);
this.PerformLayout();
}
2026-01-29 20:29:12 +08:00
private System.Windows.Forms.Label label1;
2026-01-29 08:39:56 +08:00
}
}