gpt4 book ai didi

c# - Windows Phone 8 的计时器

转载 作者:太空宇宙 更新时间:2023-11-03 17:10:20 24 4
gpt4 key购买 nike

我希望每隔 1 分钟左右执行一个函数。我怎样才能在 Windows Phone 8 中实现这一点。

我不是在寻找 background agents .该应用程序将在前台运行。我有哪些选择?

最佳答案

您可以使用 DispatcherTimer 类

private DispatcherTimer dispatcherTimer;
// Constructor
public MainPage()
{

InitializeComponent();
dispatcherTimer = new System.Windows.Threading.DispatcherTimer();
dispatcherTimer.Tick += new EventHandler(dispatcherTimer_Tick);
dispatcherTimer.Interval = new TimeSpan(0, 0, 1);
dispatcherTimer.Start();

}

private void dispatcherTimer_Tick(object sender, EventArgs e)
{
//do whatever you want to do here
}

引用:(http://msdn.microsoft.com/en-us/library/system.windows.threading.dispatchertimer(v=vs.110).aspx)

关于c# - Windows Phone 8 的计时器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22012056/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com