Alquimiaware.NuGetUnity.NuGetWindow.OnGUI C# (CSharp) Method

OnGUI() private method

private OnGUI ( ) : void
return void
        private void OnGUI()
        {
            using (GUILayoutEx.Vertical())
            {
                this.tab = GUILayout.Toolbar(
                    this.tab,
                    new string[] { "Search", "Installed" },
                    GUILayout.MaxWidth(400));

                switch (this.tab)
                {
                    case 0:
                        this.searchTab.OnGUI();
                        break;
                    default:
                        break;
                }
            }
        }