質問編集履歴
1
方法を加筆。
title
CHANGED
File without changes
|
body
CHANGED
@@ -28,4 +28,14 @@
|
|
28
28
|
|
29
29
|
としても、一向に透明になりません。
|
30
30
|
|
31
|
+
|
32
|
+
PictureBoxを配置し、
|
33
|
+
|
34
|
+
Bitmap bitmap = new Bitmap(@"C:\buttonimage.png");
|
35
|
+
bitmap.MakeTransparent(bitmap.GetPixel(0, 0));
|
36
|
+
pictureBox1.Image = bitmap;
|
37
|
+
pictureBox1.BackColor = Color.Transparent;
|
38
|
+
|
39
|
+
もだめです。
|
40
|
+
|
31
41
|
アドバイスお願いします。
|