Click or drag to resize

Mike1DApplicationFormTimer Property

A Windows Forms timer that runs in the applications GUI thread, i.e. you can access all the GUI controls without the InvokeRequired logic. Be carefull with putting heavy load on this timer, since it will slow down the GUI response.

Namespace:  DHI.Mike1D.SimLauncher
Assembly:  DHI.Mike1D.SimLauncher (in DHI.Mike1D.SimLauncher.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntax
C#
public Timer Timer { get; }

Property Value

Type: Timer

Implements

ISimulationUITimer
Remarks
Be sure to start/stop this timer from the GUI thread, otherwise it will not start/stop.
See Also