C#で2つのPictureBox(背景用と、マーカー用)を使用し、背景の上にマーカー(地図の場所を示すようなピンのイメージ)を表示したいのですが、マーカー画像の透過がうまくいきません。
public partial class Form1 : Form { Bitmap bmp = new Bitmap(@"C:\work\marker.png"); Bitmap bmp2 = new Bitmap(@"C:\work\background.jpg"); public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { this.pictureBox1.Image = bmp; this.pictureBox1.Parent = this.pictureBox2; this.pictureBox2.Image = bmp2; } private void button1_Click(object sender, EventArgs e) { //白色の部分を透過する bmp.MakeTransparent(Color.White); this.pictureBox1.Image = bmp; } }
上記で、マーカー画像の白色の部分は透過されるのですが、透過された部分には、背景用のPictureBoxの画像ではなく、背景用のPictureBoxの背景色がそのまま見えてしまっています。
透過部分に背景画像を表示させるにはどうしたらいいのでしょうか?

回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2018/12/14 01:56