0

我在这里阅读了一篇单独的文章,解释了如何在 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();
    }




    }
4

1 回答 1

0

WinFormsTimer在 Windows 应用商店应用程序中不可用。你可以DispatcherTime改用。

dispatcherTimer = new DispatcherTimer();
dispatcherTimer.Tick += dispatcherTimer_Tick;
dispatcherTimer.Interval = new TimeSpan(0, 0, 1);
dispatcherTimer.Start();

void dispatcherTimer_Tick(object sender, object e) {

}
于 2013-02-15T15:04:00.733 回答