簡體   English   中英

C#為圖片框添加值

[英]C# Adding values to pictureboxes

我剛剛發布了一些關於我正在使用Microsoft Visual C#express進行的C#游戲項目的事情,經過反復試驗后,我在下面提供的代碼將無效。 有沒有人有任何建議或幫助他們可以給我如何讓它工作? 帶括號和星號和箭頭的代碼部分是錯誤,對我不起作用。 (注意:我正在使用Microsoft Visual C#express制作表格。)

if (buttonFlag[0])
{
    return;
}

if (accept)
{
    return;
}


textBox2.Text = "";
textBox1.Text = "";
offerCounter++;

---> [[[ **pictureBox2.Image**]]]<--- = tempLabel = buttonList[0].ToString();
LostValues(tempLabel);
textBox1.Text = "-> you just opend " + tempLabel + "\n";

CallZero(tempLabel);

if (offerCounter == 20)
{
    finalValue = GetFinalValue();
    MessageBox.Show("You win " + finalValue.ToString());

    textBox1.Text = "Game is over" + "\n";
    textBox1.Text += "you won: " + finalValue.ToString();
    label16.Content = "you won:";
    label17.Content = finalValue.ToString();
    label18.Text = "Game Over";
    accept = true;
}

if (offerCounter <= 18)
{
    if ((offerCounter % 3) == 0)
    {
        GenerateNewOffer();
        textBox1.Text += "-> you have a new offer ";
        MessageBox.Show("you recieved a new offer !");
        textBox2.Text = newOffer.ToString();
    }
    else
    {
        offerRemainder = 3 - (offerCounter % 3);
        textBox1.Text += "-> Open " + offerRemainder.ToString() + "more box(es) for new offer";
    }
}
else
{
    textBox2.Text = "";
}

PictureBox.Image屬性采用Image實例。 讀取兩者的MSDN並相應地編碼。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM