ARCed.UI.FloatWindow.OnDeactivate C# (CSharp) 메소드

OnDeactivate() 보호된 메소드

protected OnDeactivate ( EventArgs e ) : void
e System.EventArgs
리턴 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);
        }