程 序 人 生

[每个人都是工程师,书写着属于自己的人生代码!--林海]
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2011年3月8日

摘要: /// <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) 编辑