摘要:
/// <summary> /// 3D动画类 /// </summary> public class Movie { Timer _timer = new Timer(); public Movie() { _timer.Enabled = false; _timer.Tick += new EventHandler(timer_Tick); } void timer_Tick(object sender, EventArgs e) { if(Refrash!=null) Refrash(); //如果有计数 if (_RunTimes >= 1) { _now 阅读全文
posted @ 2011-03-08 13:56 林海 阅读(161) 评论(0) 推荐(0) 编辑