Hallo@all,
mein Problem ist folgendes.. ich habe 6 pictureBoxen auf meiner Form... und jede PictureBox soll aber eine zufällig Generierte Zahl von Bild Öffnen... nur erlaubt es der Compiler nicht..
und anstatt _2 also bei Resources soll eine Zufallszahl stehen...
würd mich um hilfe freuen....
mein Problem ist folgendes.. ich habe 6 pictureBoxen auf meiner Form... und jede PictureBox soll aber eine zufällig Generierte Zahl von Bild Öffnen... nur erlaubt es der Compiler nicht..
Code:
public void KarteAnzeigen(int Karte)
{
PictureBox[] pictureBox = { pictureBox1, pictureBox1, pictureBox2, pictureBox3 };
pictureBox[Karte].Image = global::WinMemory.Properties.Resources._2;
}
private void pictureBox2_Click(object sender, EventArgs e)
{
KarteAnzeigen(2);
}
und anstatt _2 also bei Resources soll eine Zufallszahl stehen...
würd mich um hilfe freuen....