看到有些论坛注册时填写用户名之后就会验证用户名是否有效,   
 我这样写好像不行,我是在Textbox changed事件里写的,最后Image的可见性不会改变,为什么啊??                     this.Image.Visible = true;
               if (!string.IsNullOrWhiteSpace(this.UserName.Text))
              {
                new Thread(new ThreadStart(() =>
                {
                    Thread.Sleep(3000);
                    this.Image.Visible = false;
                })).Start();
                }