IUIService.ShowToolWindow(Guid) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Affiche la fenêtre Outil spécifiée.
public:
bool ShowToolWindow(Guid toolWindow);
public bool ShowToolWindow (Guid toolWindow);
abstract member ShowToolWindow : Guid -> bool
Public Function ShowToolWindow (toolWindow As Guid) As Boolean
Paramètres
- toolWindow
- Guid
Identificateur Guid valide pour la fenêtre Outil. Il peut s'agir d'un Guid personnalisé ou d'une valeur prédéfinie de StandardToolWindows.
Retours
true
si la fenêtre Outil s'est affichée correctement ; false
si elle n'a pas pu être affichée ou localisée.
Exemples
L’exemple de code suivant tente d’obtenir une instance du IUIService et d’appeler la méthode du ShowToolWindow service.
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