System.Windows.Controls.PopupHelper.OnUpdateVisualStates C# (CSharp) Method

OnUpdateVisualStates() private method

Fires the UpdateVisualStates event.
private OnUpdateVisualStates ( EventArgs e ) : void
e System.EventArgs The event data.
return void
        private void OnUpdateVisualStates(EventArgs e)
        {
            EventHandler handler = UpdateVisualStates;
            if(handler != null)
            {
                handler(this, e);
            }
        }