-12

这是代码,我在命令行应用程序中测试了 snmpconn 方法,但它在 Windows 窗体应用程序运行时冻结,我没有理由吗?

 public snmpmain()
    {
        InitializeComponent();
    }

    private void Form1_Load(object sender, EventArgs e)
    {
        this.button1.Click += new System.EventHandler(this.snmpconn);
    }

    private void button1_Click(object sender, EventArgs e)
    {
        //button1.Enabled = false; will disable the button before the event is fired
       this.button1.Click += new System.EventHandler(this.snmpconn);
    }

    private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
    {

    }

        int port = 162;
       // UdpClient listener;
    //    IPEndPoint groupEP;
        byte[] packet = new byte[1024];

        int commlength, miblength, datatype, datalength, datastart, Objecttype, Objectlength;
        int agent;
        int timestamp;
        int entrspc;
        int specifictrap;
        int finallen;
        int objectstart;
        string objectid;
        string test1;
        byte[] test2 = new byte[1024];
        int temp;
        string tempo;


      private void snmpconn(object sender, System.EventArgs e)
        {
            listBox1.Items.Add("Initializing" + port + "...");
            this.button1.Click -= new System.EventHandler(this.snmpconn);

            UdpClient listener = new UdpClient(port);
            IPEndPoint groupEP = new IPEndPoint(IPAddress.Any, port);

            while (true)
            {
                listBox1.Items.Add("Waiting....");

                    packet = listener.Receive(ref groupEP);


                listBox1.Items.Add("Processing...");
                if (packet.Length != 0)
                { // do some work 
                  }
             }
         }

这适用于命令行应用程序。

你有线索吗。

4

1 回答 1

4

哇,我没有注意到主要错误就回答了!

while (true)

如果您不确定自己在做什么,请不要这样做,几乎永远不要这样做!您在循环中分配了 100% 的进程资源,而不会留下一点 CPU 来执行渲染。

在尝试使您的代码正常工作之前,您应该阅读并了解多线程和同步。

然后,您将太多事件绑定到您的 btn 点击!

这一行:

   this.button1.Click += new System.EventHandler(this.snmpconn);

button1_Click 事件不需要。

此外,在单击时使用绑定事件可能会产生误导,您可以使用标志(真/假)来检查是否在单击 btn 时执行您的功能。

于 2013-07-05T15:34:31.027 回答