📄 form1.cs
字号:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Diagnostics;
namespace Net_Send
{
/// <summary>
/// Form1 的摘要说明。
/// </summary>
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox Client;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox Msg;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox cunt;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label ShowMsg;
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.Container components = null;
public Form1()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.Client = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.Msg = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.cunt = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.ShowMsg = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label1
//
this.label1.Location = new System.Drawing.Point(16, 40);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(48, 24);
this.label1.TabIndex = 0;
this.label1.Text = "发送至:";
//
// Client
//
this.Client.Location = new System.Drawing.Point(80, 32);
this.Client.Name = "Client";
this.Client.Size = new System.Drawing.Size(168, 21);
this.Client.TabIndex = 1;
this.Client.Text = "*";
//
// label2
//
this.label2.Location = new System.Drawing.Point(16, 80);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(64, 23);
this.label2.TabIndex = 2;
this.label2.Text = "发送内容:";
//
// Msg
//
this.Msg.Location = new System.Drawing.Point(80, 72);
this.Msg.Name = "Msg";
this.Msg.Size = new System.Drawing.Size(168, 21);
this.Msg.TabIndex = 3;
this.Msg.Text = "嘿,你好!";
//
// label3
//
this.label3.Location = new System.Drawing.Point(24, 120);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(48, 16);
this.label3.TabIndex = 4;
this.label3.Text = "发送数量:";
//
// cunt
//
this.cunt.Location = new System.Drawing.Point(80, 112);
this.cunt.Name = "cunt";
this.cunt.Size = new System.Drawing.Size(40, 21);
this.cunt.TabIndex = 5;
this.cunt.Text = "1";
//
// button1
//
this.button1.Location = new System.Drawing.Point(80, 160);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(128, 40);
this.button1.TabIndex = 6;
this.button1.Text = "发送";
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// ShowMsg
//
this.ShowMsg.Location = new System.Drawing.Point(24, 224);
this.ShowMsg.Name = "ShowMsg";
this.ShowMsg.Size = new System.Drawing.Size(240, 16);
this.ShowMsg.TabIndex = 7;
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(292, 266);
this.Controls.Add(this.ShowMsg);
this.Controls.Add(this.button1);
this.Controls.Add(this.cunt);
this.Controls.Add(this.label3);
this.Controls.Add(this.Msg);
this.Controls.Add(this.label2);
this.Controls.Add(this.Client);
this.Controls.Add(this.label1);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
}
#endregion
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
private void button1_Click(object sender, System.EventArgs e)
{
long i = long.Parse(cunt.Text);
for( long j= 0 ; j < i ; j++)
{
//System.Diagnostics.Process.Start("net.exe", "send " + Client.Text + " " + Msg.Text);
Process pro = new Process();
pro.StartInfo.UseShellExecute = false;
pro.StartInfo.RedirectStandardError = true;
pro.StartInfo.RedirectStandardInput = true;
pro.StartInfo.RedirectStandardOutput = true;
pro.StartInfo.FileName = "net.exe";
pro.StartInfo.Arguments = "send " + Client.Text + " " + Msg.Text;
pro.StartInfo.CreateNoWindow = true;
pro.Start();
ShowMsg.Text = "已向 "+Client.Text +" 发送第: " + (j+1) + " 条消息";
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -