请问c#控件(StatusBar)的时间显示
timer1.Enabled   =   True 
 timer1.Interval   =   1000   //一秒   
 //timer1.Tick事件 
 private   void   timer1_Tick(object   sender,   EventArgs   e) 
 { 
             statusBar1.Text   =   DateTime.Now.ToString( "yyyy-MM-dd   HH:mm:ss "); 
 }     
 private   void   timer1_Tick(object   sender,   EventArgs   e) 
                         { 
                                     this.statusBar1.Text   =DateTime.Now.ToString(); 
                                     this.statusBar1.Invalidate(); 
                         }   
 这些代码具体怎么操作,怎么实现?
------解决方案--------------------timer1_Tick  这个事件里写就可以啊。不知道你有什么问题
------解决方案--------------------statusBar 是有的  VS2005