IToolWindowProvider.GetToolWindow(Type, Boolean) 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.
Retourne la fenêtre outil instance correspondant au type donné. Nous ne prenons en charge que les fenêtres d’outils à instance unique. Il s’agit donc toujours d’un mappage 1-1.
public:
Microsoft::VisualStudio::Modeling::Shell::ToolWindow ^ GetToolWindow(Type ^ toolWindowType, bool forceCreate);
public Microsoft.VisualStudio.Modeling.Shell.ToolWindow GetToolWindow (Type toolWindowType, bool forceCreate);
abstract member GetToolWindow : Type * bool -> Microsoft.VisualStudio.Modeling.Shell.ToolWindow
Public Function GetToolWindow (toolWindowType As Type, forceCreate As Boolean) As ToolWindow
Paramètres
- toolWindowType
- Type
Type de fenêtre d’outil à récupérer
- forceCreate
- Boolean
True si la fenêtre outil doit être créée si elle n’a pas déjà été créée.
Retours
Fenêtre outil de toolWindowType
type