日期:2014-05-18 浏览次数:21042 次
public class DrawImageControl : Control 
    {
        public DrawImageControl()
        {
            SetStyle(ControlStyles.OptimizedDoubleBuffer|ControlStyles.AllPaintingInWmPaint, true);        
            SetStyle(ControlStyles.UserPaint|ControlStyles.ContainerControl , true  );
          
            images = getImages();
            timer1 = new Timer();
           // this.BackColor = Color.Black ;
        }
      }