Beispiel #1
0
        public void BringToFront()
        {
            if (!_visible)
            {
                // Use docking manager to ensure we are Visible
                _manager.ShowContent(this);
            }

            if (_autoHidden)
            {
                // Request docking manager bring to window into view
                _manager.BringAutoHideIntoView(this);
            }
            else
            {
                // Ask the parent WindowContent to ensure we are the active Content
                _parentWindowContent.BringContentToFront(this);
            }
        }