0

我创建了一个包含线程的程序。有一个带有面板的按钮,当面板被线程访问时,按钮应自动将其背景颜色变为粉红色。再次按下按钮时,它应该变成绿色。我的问题是当线程访问该面板时,按钮不会变成粉红色,而是保持默认颜色。但是当我点击它改变颜色。

这是我所做的:-

//这是按钮点击事件

public void btn_Click(object sender, System.EventArgs e)
    {
        locked = !locked; //makes the locked variable true if it is false and vice versa

        this.btn.BackColor = locked ? Color.Pink : Color.Green;

        lock (this)
        {
            if (!locked)
            {
                Monitor.Pulse(this);

            }
        }
    }

这是执行时的代码,按钮应自动变为粉红色。

 public void start2()
        {
           Thread.Sleep(delay);


            while (true)
            {


            semaphore.Signal();
            this.ZeroPlane();
            panel.Invalidate();
            buff.read(ref colour, ref status);             

            for (int k = 0; k < 5; k++)
            {
                panel.Invalidate();
                this.movePlane(xDelta, yDelta);
                Thread.Sleep(delay);
                locked = true;
            }

            if (status == "1" || status =="2" || status == "3") //checks whether it has arrived at the destination
            {

                lock (this)
                {
                    while (locked)
                    {
                        Monitor.Wait(this); //keep the plane in the hub  until the button is pressed.
                    }
                }
                semaphore.Wait();

                buff.write(this.colour, this.status); //overwrites the buffer 

                buff.read(ref colour, ref status);



                for (int p = 0; p < 5; p++)
                {
                    this.westEast = true;
                    this.movePlane(0, 20);
                    Thread.Sleep(delay);
                    panel.Invalidate();


                }
                nextSemaphore.Wait();
                nextBuffer.write(this.colour, "0");
                this.colour = Color.Yellow;
                this.status = null;

            }


        }
4

2 回答 2

1

当按钮被按下时,您的按钮正在查看locked变量,如果它被锁定(将是粉红色),那么您立即将其设置为未锁定(绿色),这意味着当您更改颜色时,它只能变为绿色,你没有给它机会去粉红色。该Start2方法设置locked变量,但是您无法另外测试它以更改按钮(我假设您已经发现从另一个线程更改表单是不行的)。

您有两个选择,制作一个每 100 毫秒触发一次的计时器,或者其他什么东西,测试“锁定”变量并将按钮设置为粉红色。此计时器将在表单线程上,因此允许更改按钮属性。

否则,您可以创建一个事件作为变量的侦听器,并调用该事件以从您的线程内部触发。

于 2013-09-26T10:49:34.587 回答
0

我设法找到了解决方案。我只是通过使用它的变量名更改了按钮的背景色。

这是我所做的:

         //more code here

         if (status == "1" || status =="2" || status == "3") //checks whether it has arrived at the destination

                   {

                    this.btn.BackColor = Color.Pink; //just change its colour to pink.
                    lock (this)
                    {
                    //rest of the code
于 2013-09-26T11:15:33.793 回答