111,097
社区成员




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 ;
}
}