严重问题 (2)求助···
int iWidth=this.pictureBox1.Width;int iHeight=this.pictureBox1.Height;
Graphics g=this.pictureBox1.CreateGraphics();
g.Clear(Color.Gray);
for(int y=0;y<iWidth/2;y++)
{
Rectangle DestRect=new Rectangle(iWidth/2-y,0,2*y,iHeight);
Rectangle SrcRect=new Rectangle(0,0,MyBitmap.Width,MyBitmap.Height);
g.DrawImage(MyBitmap,DestRect,SrcRect,GraphicsUnit.Pixel);
}
这个是啥意思呀?有点晕,不明白···
请帮忙解释一下 ,具体点,谢谢··
还有一点:
请问一下:咋样编写代码可以让想QQ音乐那样的程序暂停和在运行时隐藏呢??
[ 本帖最后由 鸿硕 于 2009-11-4 23:53 编辑 ]