私の質問は基本的に聞こえますが、あちこち検索しても何も見つかりませんでした..これが私のコードです:
public MainWindow()
{
InitializeComponent();
Map newMap = new Map();
newMap.setMapStrategy(new SmallMapStrategy());
newMap.createMap();
System.Windows.Forms.PictureBox pictureBox1 = new System.Windows.Forms.PictureBox();
pictureBox1.Paint += new System.Windows.Forms.PaintEventHandler(newMap.grid[3].afficher);
}
これはアフィッシャー関数です:
public override void afficher(object sender, PaintEventArgs e)
{
e.Graphics.DrawImage(squareImage, pos_x, pos_y, 50, 50);
}
squareImage は Drawing.Image に対応する属性です。pos_x と pos_y はカスタム int32 属性です。
私が望むのは、アプリケーションの実行中に画像を表示することです...