Version

CalculationFrequency Enumeration

Determines how frequently the calculations are done by the the XamCalculationManager.
Syntax
'Declaration
 
Public Enum CalculationFrequency 
   Inherits System.Enum
public enum CalculationFrequency : System.Enum 
Members
MemberDescription
AsynchronousCalculations will be performed on a timer. This frees the UI Thread, but means that calculations may not always be current.
ManualXamCalculationManager never performs any calculations until the XamCalculationManager.PerformCalculations method is explicitly invoked.
SynchronousCalculations are performed every time a change notifiation is received. That is, every time a value involved in a calculation is changed, all dirtied calculations are recalculated and the UI thread is locked until all calculations are complete.
Remarks

This enumeration is used by the XamCalculationManager component to determine when calculations are performed.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also