一个钟的图片   让窗体背景图设为钟的图片   想让除轮廓以外的都为 透明怎么做!!!!!    

解决方案 »

  1.   

    http://dylike.czdown.com
    下载DYD.dll即可
      

  2.   

    我记得以前做过不要加什么的 啊 窗体背景色 设为 transparent 但说窗体不支持此属性!!!!!  
      

  3.   

    可能是我误解了,我以为你是想要把PNG作为窗体背景,从而起到透明效果.
      

  4.   

    窗体重绘       private void Form1_Paint(object sender, PaintEventArgs e)
            {              System.Drawing.Drawing2D.GraphicsPath shape = new       System.Drawing.Drawing2D.GraphicsPath();
                shape.AddEllipse(0, 0, this.Width, this.Height);
                this.Region = new System.Drawing.Region(shape);        }或者设置透明色
      

  5.   

    把窗体改成 picturebox 就行了 就没有边框
      

  6.   

    不规则窗体实现的例子
    http://download.csdn.net/source/792868