windows-8 – 在Windows 8应用程序中为DispatcherTimer的Tick事件定义事件处理程序

前端之家收集整理的这篇文章主要介绍了windows-8 – 在Windows 8应用程序中为DispatcherTimer的Tick事件定义事件处理程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在 Windows 8 Visual Studio 11中开发一个应用程序,我想为DispatcherTimer实例定义一个事件处理程序,如下所示:
  1. public sealed partial class BlankPage : Page
  2. {
  3.  
  4. int timecounter = 10;
  5. DispatcherTimer timer = new DispatcherTimer();
  6. public BlankPage()
  7. {
  8. this.InitializeComponent();
  9. timer.Tick += new EventHandler(HandleTick);
  10. }
  11.  
  12. private void HandleTick(object s,EventArgs e)
  13. {
  14.  
  15. timecounter--;
  16. if (timecounter ==0)
  17. {
  18. //disable all buttons here
  19. }
  20. }
  21. .....
  22. }

但是我得到以下错误

  1. Cannot implicitly convert type 'System.EventHandler' to 'System.EventHandler<object>'

我是widows 8应用程序的新手开发者.

你能帮帮我吗?

几乎拥有它:)你不需要实例化一个新的eventhandler对象,你只需要指向处理事件的方法.因此,一个事件处理程序.
  1. int timecounter = 10;
  2. DispatcherTimer timer = new DispatcherTimer();
  3. public BlankPage()
  4. {
  5. this.InitializeComponent();
  6.  
  7. timer.Tick += timer_Tick;
  8. }
  9.  
  10. protected void timer_Tick(object sender,object e)
  11. {
  12. timecounter--;
  13. if (timecounter == 0)
  14. {
  15. //disable all buttons here
  16. }
  17. }

尝试阅读代表以了解事件Understanding events and event handlers in C#

猜你在找的Windows相关文章