mirror of
https://e.coding.net/circlecloud/SixiBroadcast.git
synced 2024-11-17 10:58:47 +00:00
123 lines
4.9 KiB
C#
123 lines
4.9 KiB
C#
namespace UDPClient
|
||
{
|
||
partial class Frm_Client
|
||
{
|
||
/// <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.components = new System.ComponentModel.Container();
|
||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_Client));
|
||
this.portT = new System.Windows.Forms.TextBox();
|
||
this.listen = new System.Windows.Forms.Button();
|
||
this.label2 = new System.Windows.Forms.Label();
|
||
this.button2 = new System.Windows.Forms.Button();
|
||
this.msgbox = new System.Windows.Forms.ListBox();
|
||
this.notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
|
||
this.SuspendLayout();
|
||
//
|
||
// portT
|
||
//
|
||
this.portT.Location = new System.Drawing.Point(71, 13);
|
||
this.portT.Name = "portT";
|
||
this.portT.Size = new System.Drawing.Size(161, 21);
|
||
this.portT.TabIndex = 0;
|
||
this.portT.Text = "25333";
|
||
//
|
||
// listen
|
||
//
|
||
this.listen.Location = new System.Drawing.Point(238, 11);
|
||
this.listen.Name = "listen";
|
||
this.listen.Size = new System.Drawing.Size(42, 23);
|
||
this.listen.TabIndex = 2;
|
||
this.listen.Text = "监听";
|
||
this.listen.UseVisualStyleBackColor = true;
|
||
//
|
||
// label2
|
||
//
|
||
this.label2.AutoSize = true;
|
||
this.label2.Location = new System.Drawing.Point(12, 16);
|
||
this.label2.Name = "label2";
|
||
this.label2.Size = new System.Drawing.Size(53, 12);
|
||
this.label2.TabIndex = 6;
|
||
this.label2.Text = "广播端口";
|
||
//
|
||
// button2
|
||
//
|
||
this.button2.Location = new System.Drawing.Point(196, 40);
|
||
this.button2.Name = "button2";
|
||
this.button2.Size = new System.Drawing.Size(84, 23);
|
||
this.button2.TabIndex = 8;
|
||
this.button2.Text = "闪烁测试";
|
||
this.button2.UseVisualStyleBackColor = true;
|
||
this.button2.Click += new System.EventHandler(this.button2_Click);
|
||
//
|
||
// msgbox
|
||
//
|
||
this.msgbox.FormattingEnabled = true;
|
||
this.msgbox.ItemHeight = 12;
|
||
this.msgbox.Location = new System.Drawing.Point(14, 79);
|
||
this.msgbox.Name = "msgbox";
|
||
this.msgbox.Size = new System.Drawing.Size(266, 184);
|
||
this.msgbox.TabIndex = 10;
|
||
//
|
||
// notifyIcon
|
||
//
|
||
this.notifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon")));
|
||
this.notifyIcon.Text = "四喜消息提示";
|
||
this.notifyIcon.Visible = true;
|
||
this.notifyIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon_MouseDoubleClick);
|
||
//
|
||
// Frm_Client
|
||
//
|
||
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.msgbox);
|
||
this.Controls.Add(this.button2);
|
||
this.Controls.Add(this.label2);
|
||
this.Controls.Add(this.listen);
|
||
this.Controls.Add(this.portT);
|
||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||
this.Name = "Frm_Client";
|
||
this.Text = "客户端";
|
||
this.Load += new System.EventHandler(this.Frm_Client_Load);
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.TextBox portT;
|
||
private System.Windows.Forms.Button listen;
|
||
private System.Windows.Forms.Label label2;
|
||
private System.Windows.Forms.Button button2;
|
||
private System.Windows.Forms.ListBox msgbox;
|
||
private System.Windows.Forms.NotifyIcon notifyIcon;
|
||
}
|
||
}
|
||
|