|
|
namespace UserControlLib
|
|
{
|
|
partial class UserReadOrWrite
|
|
{
|
|
/// <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 组件设计器生成的代码
|
|
|
|
/// <summary>
|
|
/// 设计器支持所需的方法 - 不要修改
|
|
/// 使用代码编辑器修改此方法的内容。
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.button_Read = new System.Windows.Forms.Button();
|
|
this.button_Write = new System.Windows.Forms.Button();
|
|
this.checkBox_Monitor = new System.Windows.Forms.CheckBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// button_Read
|
|
//
|
|
this.button_Read.Location = new System.Drawing.Point(2, 2);
|
|
this.button_Read.Name = "button_Read";
|
|
this.button_Read.Size = new System.Drawing.Size(57, 23);
|
|
this.button_Read.TabIndex = 0;
|
|
this.button_Read.Text = "读取";
|
|
this.button_Read.UseVisualStyleBackColor = true;
|
|
this.button_Read.Click += new System.EventHandler(this.button_Read_Click);
|
|
//
|
|
// button_Write
|
|
//
|
|
this.button_Write.Location = new System.Drawing.Point(69, 2);
|
|
this.button_Write.Name = "button_Write";
|
|
this.button_Write.Size = new System.Drawing.Size(57, 23);
|
|
this.button_Write.TabIndex = 0;
|
|
this.button_Write.Text = "写入";
|
|
this.button_Write.UseVisualStyleBackColor = true;
|
|
this.button_Write.Click += new System.EventHandler(this.button_Write_Click);
|
|
//
|
|
// checkBox_Monitor
|
|
//
|
|
this.checkBox_Monitor.AutoSize = true;
|
|
this.checkBox_Monitor.Location = new System.Drawing.Point(136, 5);
|
|
this.checkBox_Monitor.Name = "checkBox_Monitor";
|
|
this.checkBox_Monitor.Size = new System.Drawing.Size(48, 16);
|
|
this.checkBox_Monitor.TabIndex = 1;
|
|
this.checkBox_Monitor.Text = "监控";
|
|
this.checkBox_Monitor.UseVisualStyleBackColor = true;
|
|
this.checkBox_Monitor.CheckedChanged += new System.EventHandler(this.checkBox_Monitor_CheckedChanged);
|
|
//
|
|
// UserReadOrWrite
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.checkBox_Monitor);
|
|
this.Controls.Add(this.button_Write);
|
|
this.Controls.Add(this.button_Read);
|
|
this.Name = "UserReadOrWrite";
|
|
this.Size = new System.Drawing.Size(188, 27);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button button_Read;
|
|
private System.Windows.Forms.Button button_Write;
|
|
private System.Windows.Forms.CheckBox checkBox_Monitor;
|
|
}
|
|
}
|