PictureBox 使白色部分本身透明

PictureBox makes white parts transparent itself

我的图片框就像 .PNG 文件一样。

它使白色部分透明。

甚至穿透 "Form" 并且我能够看到表单 背后的内容(比如我的桌面、文件)

但在Form1.cs [设计]中似乎很正常。

//card properties and design
this.card.BackColor = System.Drawing.Color.Red;
this.card.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("card.BackgroundImage")));
this.card.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.card.Location = new System.Drawing.Point(47, 92);
this.card.Name = "card";
this.card.Size = new System.Drawing.Size(103, 157);
this.card.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.card.TabIndex = 2;
this.card.TabStop = false;
this.card.Visible = false;

这是一张没有运行的照片:

第二张图片解释了我的问题:

这看起来像是 TransparencyKey 被设置为 Color.White。尝试清除它。