【发布时间】:2010-05-25 16:39:41
【问题描述】:
我需要能够滚动标签上的文本,我将其用于井字游戏的学分部分。我怎样才能做到这一点,我们只被教导滚动滚动条中的数值而不是文本。
private void xGameCreditsButton_Click(object sender, EventArgs e)
{
this.xWinnerLabel.BackColor = Color.White;
this.xCreditsScrollBar.Visible = true;
this.xWinnerLabel.Text = "This game was made possible with the help of: blah bla blah";
}
【问题讨论】: