Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

StateIndicatorControl Class

A state indicator control shipped with the DXGauges Suite.

Namespace: DevExpress.Xpf.Gauges

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

NuGet Package: DevExpress.Wpf.Gauges

#Declaration

public class StateIndicatorControl :
    Control,
    IModelSupported,
    ILayoutCalculator

#Remarks

Run Demo: State Indicator Models

A state indicator is used to imitate a static device or indicator that has a set of fixed states.

The following images show some examples of a state indicator.

Traffic Lights Smile
StateIndicator_TrafficLights StateIndicator_Smile

A state indicator control is based on a state image element. To learn more about it, refer to the Visual Element (State Indicator) section.

#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;
        }

    }
}

The following code snippets (auto-collected from DevExpress Examples) contain references to the StateIndicatorControl 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