繁体   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