Exemplo n.º 1
0
    public void Execute(MainPresenter mainPresenter)
    {
        // Open the standard toolbox in a tab
        mainPresenter.OnStandardToolboxClick(null, null);

        // Get the presenter for this tab.
        ExplorerPresenter presenter = mainPresenter.Presenters1[0] as ExplorerPresenter;

        if (presenter != null)
        {
            // Loop through all nodes in the standard toolbox and select each in turn.
            while (presenter.SelectNextNode())
            {
                presenter.HideRightHandPanel();
                presenter.ShowRightHandPanel();
            }
        }

        // Close the user interface.
        mainPresenter.Close(askToSave: false);
    }