Skip to main content
A newer version of this page is available. .

BlinkingAnimation Class

Contains settings to provide a blinking animation effect for the digital gauge control.

Namespace: DevExpress.Xpf.Gauges

Assembly: DevExpress.Xpf.Gauges.v19.1.dll

Declaration

public class BlinkingAnimation :
    SymbolsAnimation

Remarks

Use the BlinkingAnimation class properties to adjust the blinking effect for the current symbols panel (e.g. the SymbolsAnimation.RefreshTime property to set the time of updating animation; the BlinkingAnimation.SymbolsStates property to specify which symbols should be shown or hidden during the blinking animation effect, etc.).

BlinkingAnimation

Example

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>

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the BlinkingAnimation class.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also