私は横に動こうとしているラベルがあります。私はwhile(true)ループで動作するようにしましたが、代わりにタイマーを試してみることにしました。テキストを左右に移動させるタイマーの使い方は?
限り、私はそれがみかん動作しますが、それは例外「回数」を投げたら、それはそれをしないの後に非負でなければなりません。得ているようです
private int x = 0;
private int y = 11;
private void timer1_Tick(object sender, EventArgs e)
{
if (x <= 11)
{
x++;
string ping = new string(' ', x) + "ping";
label2.Text = ping;
}
else if (y >= 0)
{
y--;
string pong = new string(' ', y) + "pong"; // this is where the exceptions given
label2.Text = pong;
}
この問題を解決する方法がわかりません。
あなたはあなたのコードの説明を提供する必要があります:) –