我在这里阅读了一篇单独的文章,解释了如何在 Windows 窗体应用程序中制作简单的文本动画。下面的代码以一种形式完美运行。但是,我正在创建一个 Windows 应用商店应用程序,但它不起作用。计时器类无法识别,因此,代码不起作用。我需要制作一个计时器类,还是应该使用其他一些类?如果我需要做一个计时器课,我该怎么做?谢谢你。
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
t = new Timer();
t.Interval = 40;
t.Tick += new EventHandler(t_Tick);
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
string stuff = "This is some text that looks like it is being typed.";
int pos = 0;
Timer t;
void t_Tick(object sender, EventArgs e)
{
if (pos < stuff.Length)
{
textBox1.AppendText(stuff.Substring(pos, 1));
++pos;
}
else
{
t.Stop();
}
}
private void button1_Click_1(object sender, EventArgs e)
{
pos = 0;
textBox1.Clear();
t.Start();
}
}