mirror of
https://e.coding.net/circlecloud/SixiBroadcast.git
synced 2025-11-24 23:56:05 +00:00
121 lines
4.5 KiB
C#
121 lines
4.5 KiB
C#
namespace UDPServer
|
||
{
|
||
partial class Frm_Server
|
||
{
|
||
/// <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.msg = new System.Windows.Forms.TextBox();
|
||
this.button1 = new System.Windows.Forms.Button();
|
||
this.msgbox = new System.Windows.Forms.ListBox();
|
||
this.label1 = new System.Windows.Forms.Label();
|
||
this.portT = new System.Windows.Forms.TextBox();
|
||
this.label2 = new System.Windows.Forms.Label();
|
||
this.SuspendLayout();
|
||
//
|
||
// msg
|
||
//
|
||
this.msg.Location = new System.Drawing.Point(71, 39);
|
||
this.msg.Name = "msg";
|
||
this.msg.Size = new System.Drawing.Size(161, 21);
|
||
this.msg.TabIndex = 0;
|
||
//
|
||
// button1
|
||
//
|
||
this.button1.Location = new System.Drawing.Point(238, 39);
|
||
this.button1.Name = "button1";
|
||
this.button1.Size = new System.Drawing.Size(42, 23);
|
||
this.button1.TabIndex = 1;
|
||
this.button1.Text = "广播";
|
||
this.button1.UseVisualStyleBackColor = true;
|
||
this.button1.Click += new System.EventHandler(this.button_Click);
|
||
//
|
||
// msgbox
|
||
//
|
||
this.msgbox.FormattingEnabled = true;
|
||
this.msgbox.ItemHeight = 12;
|
||
this.msgbox.Location = new System.Drawing.Point(12, 77);
|
||
this.msgbox.Name = "msgbox";
|
||
this.msgbox.Size = new System.Drawing.Size(268, 184);
|
||
this.msgbox.TabIndex = 2;
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.AutoSize = true;
|
||
this.label1.Location = new System.Drawing.Point(12, 42);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(53, 12);
|
||
this.label1.TabIndex = 3;
|
||
this.label1.Text = "消 息";
|
||
//
|
||
// portT
|
||
//
|
||
this.portT.Location = new System.Drawing.Point(71, 12);
|
||
this.portT.Name = "portT";
|
||
this.portT.Size = new System.Drawing.Size(161, 21);
|
||
this.portT.TabIndex = 4;
|
||
this.portT.Text = "25333";
|
||
//
|
||
// label2
|
||
//
|
||
this.label2.AutoSize = true;
|
||
this.label2.Location = new System.Drawing.Point(12, 15);
|
||
this.label2.Name = "label2";
|
||
this.label2.Size = new System.Drawing.Size(53, 12);
|
||
this.label2.TabIndex = 5;
|
||
this.label2.Text = "广播端口";
|
||
//
|
||
// Frm_Server
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(292, 273);
|
||
this.Controls.Add(this.label2);
|
||
this.Controls.Add(this.portT);
|
||
this.Controls.Add(this.label1);
|
||
this.Controls.Add(this.msgbox);
|
||
this.Controls.Add(this.button1);
|
||
this.Controls.Add(this.msg);
|
||
this.Name = "Frm_Server";
|
||
this.Text = "服务端";
|
||
this.Load += new System.EventHandler(this.Frm_Server_Load);
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.TextBox msg;
|
||
private System.Windows.Forms.Button button1;
|
||
private System.Windows.Forms.ListBox msgbox;
|
||
private System.Windows.Forms.Label label1;
|
||
private System.Windows.Forms.TextBox portT;
|
||
private System.Windows.Forms.Label label2;
|
||
}
|
||
}
|
||
|