Toggling Picture Box visibility C#

前端 未结 4 1359
失恋的感觉
失恋的感觉 2021-01-27 06:56

Why is the picture box control\'s visibility property not working here. I have initially set them to false, so that when the screen loads they are not visible. But then I wish t

4条回答
  •  温柔的废话
    2021-01-27 07:46

    This is your UI thread. UI thread is so busy that it is not getting time to refresh the display. UI thread is busy in endless while loop, so how can it update UI?

提交回复
热议问题