BrightIdeasSoftware.ObjectListView.HandleApplicationIdle C# (CSharp) 메소드

HandleApplicationIdle() 보호된 메소드

The application is idle. Trigger a SelectionChanged event.
protected HandleApplicationIdle ( object sender, EventArgs e ) : void
sender object
e EventArgs
리턴 void
        protected virtual void HandleApplicationIdle(object sender, EventArgs e)
        {
            // Remove the handler before triggering the event
            Application.Idle -= new EventHandler(HandleApplicationIdle);
            this.hasIdleHandler = false;

            this.OnSelectionChanged(new EventArgs());
        }
ObjectListView