IUIService.ShowToolWindow(Guid) Metodo

Definizione

Visualizza la finestra degli strumenti specificata.

public:
 bool ShowToolWindow(Guid toolWindow);
public bool ShowToolWindow (Guid toolWindow);
abstract member ShowToolWindow : Guid -> bool
Public Function ShowToolWindow (toolWindow As Guid) As Boolean

Parametri

toolWindow
Guid

Identificatore Guid per la finestra degli strumenti. Può corrispondere a un oggetto Guid personalizzato o a uno dei valori predefiniti dell'oggetto StandardToolWindows.

Restituisce

true se la finestra degli strumenti è stata visualizzata correttamente; false se non è stato possibile visualizzare o individuare la finestra degli strumenti.

Esempio

Nell'esempio di codice seguente viene eseguito un tentativo di ottenere un'istanza IUIService di e richiamare il metodo del ShowToolWindow servizio.

IUIService^ UIservice = dynamic_cast<IUIService^>(this->GetService( System::Windows::Forms::Design::IUIService::typeid ));
if ( UIservice != nullptr )
      UIservice->ShowToolWindow( StandardToolWindows::TaskList );
IUIService UIservice = (IUIService)this.GetService( 
    typeof( System.Windows.Forms.Design.IUIService ) );
if( UIservice != null )            
    UIservice.ShowToolWindow(StandardToolWindows.TaskList);
Dim UIservice As IUIService = CType(Me.GetService( _
    GetType(System.Windows.Forms.Design.IUIService)), IUIService)
If (UIservice IsNot Nothing) Then
    UIservice.ShowToolWindow(StandardToolWindows.TaskList)
End If

Si applica a

Vedi anche