SidebarDiagnostics.Windows.AppBarWindow.AppBarShow C# (CSharp) Method

AppBarShow() public method

public AppBarShow ( ) : void
return void
        public virtual void AppBarShow()
        {
            if (Framework.Settings.Instance.UseAppBar)
            {
                int _screen;
                DockEdge _edge;
                WorkArea _windowWA;
                WorkArea _appbarWA;

                Monitor.GetWorkArea(this, out _screen, out _edge, out _windowWA, out _appbarWA);

                SetAppBar(_screen, _edge, _windowWA, _appbarWA, null);
            }

            Show();
        }