検索結果 2 件
- 8年前
- フォーラム: C言語何でも質問掲示板
- トピック: C# 画像合成
- 返信数: 2
- 閲覧数: 1786
C# 画像合成
C#で画像の上に画像を表示させたいです(合成) どうすればいいですか!? using System; using System.Windows.Forms; using System.Drawing; class Game1 : Form { public static void Main() { Application.Run(new Game1()); } public Game1() { this.Text = "Game"; this.BackColor = Color.FromArgb(255, 255, 255); this.WindowState = FormWindowStat...