ARCed.UI.FloatWindow.OnDeactivate C# (CSharp) Method

OnDeactivate() protected method

protected OnDeactivate ( EventArgs e ) : void
e System.EventArgs
return void
        protected override void OnDeactivate(EventArgs e)
        {
            base.OnDeactivate(e);
            // Propagate the Deactivate event to the visible panes content objects
            foreach (DockPane pane in this.VisibleNestedPanes)
                foreach (IDockContent content in pane.Contents)
                    content.OnDeactivate(e);
        }