wpf-devexpress-dot-xpf-dot-gauges-dot-blinkinganimation.md
Specifies symbols states to show (hide) blinking animation on the symbols panel.
Namespace : DevExpress.Xpf.Gauges
Assembly : DevExpress.Xpf.Gauges.v25.2.dll
NuGet Package : DevExpress.Wpf.Gauges
public StatesMask SymbolsStates { get; set; }
Public Property SymbolsStates As StatesMask
| Type | Description |
|---|---|
| StatesMask |
A StatesMask value that specifies symbols states.
|
To show blinking animation for the corresponding symbols, set the SymbolsStates property to 1 for each one.
This example demonstrates how to customize the blinking animation effect in a digital gauge.
<dxga:DigitalGaugeControl.SymbolView>
<dxga:MatrixView8x14>
<dxga:MatrixView8x14.Animation>
<dxga:BlinkingAnimation RefreshTime="00:00:01" SymbolsStates="0 1 1 1 0 1 1 0" />
</dxga:MatrixView8x14.Animation>
</dxga:MatrixView8x14>
</dxga:DigitalGaugeControl.SymbolView>
See Also