0

我正在尝试将透明 Gif 图像添加到列表视图,我使用以下代码片段添加 gif 图像。

// control as ListView 
void AddGiftoListView(Control parent)
{
    Bitmap img = (Bitmap)Properties.Resources.madLoader; // Transparent gif image
    Size sz = img.Size;
    PictureBox pbGif = new PictureBox();
    pbGif.Size = img.Size;
    pbGif.Image = img;

    parent.Controls.Add(pbGif);
    Point p = new Point(1, 1);
    pbGif.Location = p;
    pbGif.Show();
} 

但是 gif 不是透明的,当列表视图充满文本时,我们可以在白色背景的顶部看到 gif。有什么办法可以解决这个问题吗?

谢谢,石菊PK

4

1 回答 1

0

尝试将表单的TransparencyKey 设置为白色

this.TransparencyKey = Color.White;
于 2012-04-18T12:32:59.930 回答