CTZServerControl/CTZServerControl/Frm_Main.Designer.cs

122 lines
4.6 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

namespace CTZServerControl
{
partial class Frm_Main
{
/// <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()
{
this.outdata = new System.Windows.Forms.ListBox();
this.start = new System.Windows.Forms.Button();
this.serverpath = new System.Windows.Forms.TextBox();
this.process1 = new System.Diagnostics.Process();
this.send = new System.Windows.Forms.Button();
this.cmd = new System.Windows.Forms.ComboBox();
this.SuspendLayout();
//
// outdata
//
this.outdata.FormattingEnabled = true;
this.outdata.ItemHeight = 12;
this.outdata.Location = new System.Drawing.Point(13, 38);
this.outdata.Name = "outdata";
this.outdata.Size = new System.Drawing.Size(768, 496);
this.outdata.TabIndex = 0;
//
// start
//
this.start.Location = new System.Drawing.Point(705, 8);
this.start.Name = "start";
this.start.Size = new System.Drawing.Size(75, 23);
this.start.TabIndex = 1;
this.start.Text = "启动服务器";
this.start.UseVisualStyleBackColor = true;
this.start.Click += new System.EventHandler(this.start_Click);
//
// serverpath
//
this.serverpath.Location = new System.Drawing.Point(13, 10);
this.serverpath.Name = "serverpath";
this.serverpath.Size = new System.Drawing.Size(686, 21);
this.serverpath.TabIndex = 2;
//
// process1
//
this.process1.StartInfo.Domain = "";
this.process1.StartInfo.LoadUserProfile = false;
this.process1.StartInfo.Password = null;
this.process1.StartInfo.StandardErrorEncoding = null;
this.process1.StartInfo.StandardOutputEncoding = null;
this.process1.StartInfo.UserName = "";
this.process1.SynchronizingObject = this;
//
// send
//
this.send.Location = new System.Drawing.Point(705, 539);
this.send.Name = "send";
this.send.Size = new System.Drawing.Size(75, 23);
this.send.TabIndex = 3;
this.send.Text = "发送命令";
this.send.UseVisualStyleBackColor = true;
this.send.Click += new System.EventHandler(this.send_Click);
//
// cmd
//
this.cmd.FormattingEnabled = true;
this.cmd.Location = new System.Drawing.Point(13, 541);
this.cmd.Name = "cmd";
this.cmd.Size = new System.Drawing.Size(686, 20);
this.cmd.TabIndex = 4;
//
// Frm_Main
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(792, 573);
this.Controls.Add(this.cmd);
this.Controls.Add(this.send);
this.Controls.Add(this.serverpath);
this.Controls.Add(this.start);
this.Controls.Add(this.outdata);
this.Name = "Frm_Main";
this.Text = "CTZServer";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Frm_Main_FormClosed);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListBox outdata;
private System.Windows.Forms.Button start;
private System.Windows.Forms.TextBox serverpath;
private System.Diagnostics.Process process1;
private System.Windows.Forms.Button send;
private System.Windows.Forms.ComboBox cmd;
}
}