Where can I find a control which is like the C# Timer Control in WPF?
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
you can also use
The usual WPF timer is the
DispatcherTimer
, which is not a control but used in code. It basically works the same way like the WinForms timer:More on the DispatcherTimer can be found here
With Dispatcher you will need to include
Also note that if you right-click DispatcherTimer and click Resolve it should add the appropriate references.