Skip to main content

StateIndicatorControl.StateIndex Property

Gets or sets the index of a state image that is currently displayed on the StateIndicatorControl.

Namespace: DevExpress.Xpf.Gauges

Assembly: DevExpress.Xpf.Gauges.v23.2.dll

NuGet Package: DevExpress.Wpf.Gauges

Declaration

public int StateIndex { get; set; }

Property Value

Type Description
Int32

An integer value that is the current state index.

Example

This example demonstrates how to create and customize a StateIndicatorControl.

View Example

using System.Windows;
using System.Windows.Input;

namespace DXGauges_StateIndicator {

    public partial class MainWindow : Window {
        public MainWindow() {
            InitializeComponent();
        }

        private void stateIndicatorControl1_MouseEnter(object sender, MouseEventArgs e) {
            stateIndicatorControl1.StateIndex = 0;
        }

        private void stateIndicatorControl1_MouseLeave(object sender, MouseEventArgs e) {
            stateIndicatorControl1.StateIndex = 2;
        }

    }
}
See Also