如何:创建计时器

如何:创建计时器,第1张

概述Silverlight 1(共 1)对本文的评价是有帮助 - 评价此主题 若要在 Silverlight 中创建计时器,请使用 System.Windows.Threading 命名空间中的 DispatcherTimer 类。 下面的示例演示一个使用 DispatcherTimer 的简单计数器。 运行此示例。  示例 XAML <Grid x:Name="LayoutRoot" Backgro Silverlight 1(共 1)对本文的评价是有帮助 - 评价此主题

若要在 Silverlight 中创建计时器,请使用 System.Windows.Threading 命名空间中的 DispatcherTimer 类。

下面的示例演示一个使用 DispatcherTimer 的简单计数器。

运行此示例。

@L_403_5@
XAML
<GrID x:name="LayoutRoot" Background="White">  <!-- Just a TextBlock to show the output of the timer. -->  <TextBlock Loaded="StartTimer" x:name="myTextBlock" /></GrID>
C# VB
public voID StartTimer(object o,RoutedEventArgs sender){    System.windows.Threading.dispatcherTimer mydispatcherTimer = new System.windows.Threading.dispatcherTimer();    mydispatcherTimer.Interval = new TimeSpan(0,100); // 100 Milliseconds     mydispatcherTimer.Tick += new EventHandler(Each_Tick);    mydispatcherTimer.Start();}// A variable to count with.int i = 0;// Raised every 100 miliseconds while the dispatcherTimer is active.public voID Each_Tick(object o,EventArgs sender){    myTextBlock.Text = "Count up: " + i++.ToString();}
总结

以上是内存溢出为你收集整理的如何:创建计时器全部内容,希望文章能够帮你解决如何:创建计时器所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1068211.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存