ERP.Controls.BusyIndicator.BusyIndicator C# (CSharp) Method

BusyIndicator() public method

Instantiates a new instance of the BusyIndicator control.
public BusyIndicator ( ) : System
return System
        public BusyIndicator()
        {
            DefaultStyleKey = typeof(BusyIndicator);
            _displayAfterTimer = new DispatcherTimer();
            _displayAfterTimer.Tick += new EventHandler(DisplayAfterTimerElapsed);
        }