ToolWindowPane Class
A default implementation for a tool window. It can be subclassed to implement a customized tool window.
Inheritance Hierarchy
System.Object
Microsoft.VisualStudio.Shell.WindowPane
Microsoft.VisualStudio.Shell.ToolWindowPane
Namespace: Microsoft.VisualStudio.Shell
Assembly: Microsoft.VisualStudio.Shell.11.0 (in Microsoft.VisualStudio.Shell.11.0.dll)
Syntax
'Declaration
<ComVisibleAttribute(True)> _
Public Class ToolWindowPane _
Inherits WindowPane _
Implements IVsWindowSearch
[ComVisibleAttribute(true)]
public class ToolWindowPane : WindowPane,
IVsWindowSearch
[ComVisibleAttribute(true)]
public ref class ToolWindowPane : public WindowPane,
IVsWindowSearch
[<ComVisibleAttribute(true)>]
type ToolWindowPane =
class
inherit WindowPane
interface IVsWindowSearch
end
public class ToolWindowPane extends WindowPane implements IVsWindowSearch
The ToolWindowPane type exposes the following members.
Constructors
Name | Description | |
---|---|---|
ToolWindowPane() | Initializes a new instance of ToolWindowPane with a nulla null reference (Nothing in Visual Basic) service provider | |
ToolWindowPane(IServiceProvider) | Initializes an instance of this class. |
Top
Properties
Name | Description | |
---|---|---|
BitmapIndex | Gets or sets the index of the image in the bitmap strip to use for the window frame icon. | |
BitmapResourceID | Gets or sets the resource ID for the bitmap strip from which to take the window frame icon. | |
Caption | Gets or sets the caption for the tool window. | |
Content | Gets or sets the content of this tool window. (Inherited from WindowPane.) | |
Frame | Gets or sets the IVsWindowFrame that hosts the ToolWindowPane. | |
InitializationMode | Gets the initialization mode that is associated with this window pane. (Inherited from WindowPane.) | |
Package | Gets or sets the package that owns the tool window. | |
SearchCategory | ||
SearchEnabled | ||
SearchFiltersEnum | ||
SearchHost | ||
SearchOptionsEnum | ||
ToolBar | Gets or sets the CommandID. | |
ToolBarCommandTarget | ||
ToolBarDropTarget | Gets or sets the toolbar drop target. | |
ToolBarLocation | Gets or sets the location of the toolbar in the tool window. | |
ToolClsid | Gets or sets the CLSID of a tool that should be used for this tool window. | |
Window | Gets the window associated with this window pane. (Inherited from WindowPane.) |
Top
Methods
Name | Description | |
---|---|---|
ClearSearch | ||
CreateSearch | ||
Dispose() | Disposes the window pane and its resources. (Inherited from WindowPane.) | |
Dispose(Boolean) | Disposes the resources of the window pane. (Inherited from WindowPane.) | |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
GetIVsWindowPane | Gets the IVsWindowPane that is associated with the tool window. | |
GetService | Gets the service of the specified type. (Inherited from WindowPane.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
Initialize | Initializes services after the window pane has been sited. (Inherited from WindowPane.) | |
LoadUIState | Override to load the previously saved state of the pane. (Inherited from WindowPane.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
OnClose | Raised when the window is closed. (Inherited from WindowPane.) | |
OnCreate | Raised when the window pane is created. (Inherited from WindowPane.) | |
OnNavigationKeyDown | ||
OnToolBarAdded | Called when a toolbar is added to the tool window. | |
OnToolWindowCreated | This method can be overridden by the derived class to execute any code that must run after the creation of IVsWindowFrame. | |
PreProcessMessage | Preprocesses the messages from navigation keys. (Inherited from WindowPane.) | |
ProvideSearchSettings | ||
SaveUIState | Override to save custom state information to be used later when the pane is reconstructed. (Inherited from WindowPane.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Top
Explicit Interface Implementations
Name | Description | |
---|---|---|
IServiceProvider.GetService | Gets the service of the specified type. (Inherited from WindowPane.) | |
IOleCommandTarget.Exec | Executes the specified command. (Inherited from WindowPane.) | |
IOleCommandTarget.QueryStatus | Gets the status of the commands. (Inherited from WindowPane.) | |
IVsUIElementPane.CloseUIElementPane | Closes the pane. (Inherited from WindowPane.) | |
IVsUIElementPane.CreateUIElementPane | Creates the pane. (Inherited from WindowPane.) | |
IVsUIElementPane.GetDefaultUIElementSize | When implemented in a derived class, gets the default size of the pane. (Inherited from WindowPane.) | |
IVsUIElementPane.LoadUIElementState | When implemented in a derived class, loads custom state storage. (Inherited from WindowPane.) | |
IVsUIElementPane.SaveUIElementState | Stores the state of the pane to the specified stream. (Inherited from WindowPane.) | |
IVsUIElementPane.SetUIElementSite | Sets the site for this window pane. (Inherited from WindowPane.) | |
IVsUIElementPane.TranslateUIElementAccelerator | Handles keyboard accelerators before the shell processes the message. (Inherited from WindowPane.) | |
IVsWindowPane.ClosePane | Obsolete. Closes the window pane. Obsolete. (Inherited from WindowPane.) | |
IVsWindowPane.CreatePaneWindow | Obsolete. Creates a window pane. Obsolete. (Inherited from WindowPane.) | |
IVsWindowPane.GetDefaultSize | Obsolete. Gets the default size of the window pane. Obsolete. (Inherited from WindowPane.) | |
IVsWindowPane.LoadViewState | Obsolete. Loads the saved view state. Obsolete. (Inherited from WindowPane.) | |
IVsWindowPane.SaveViewState | Obsolete. Saves the loaded view state. Obsolete. (Inherited from WindowPane.) | |
IVsWindowPane.SetSite | Obsolete. Initializes this window pane with the specified service provider. Obsolete. (Inherited from WindowPane.) | |
IVsWindowPane.TranslateAccelerator | Obsolete. Handles the translation of navigation keys. Obsolete (Inherited from WindowPane.) | |
IVsWindowSearch.Category |
Top
Remarks
Derives from WindowPane and inherits the default services that WindowPane provides. Derived tool windows must offer a public constructor that takes a service provider. Visual Studio uses this constructor when it creates an instance of the tool window.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.