StandardToolWindows Class

 

Defines GUID identifiers that correspond to the standard set of tool windows that are available in the design environment.

Namespace:   System.ComponentModel.Design
Assembly:  System (in System.dll)

System::Object
  System.ComponentModel.Design::StandardToolWindows

[HostProtectionAttribute(SecurityAction::LinkDemand, SharedState = true)]
[PermissionSetAttribute(SecurityAction::LinkDemand, Name = "FullTrust")]
[PermissionSetAttribute(SecurityAction::InheritanceDemand, Name = "FullTrust")]
public ref class StandardToolWindows 

NameDescription
System_CAPS_pubmethodStandardToolWindows()

Initializes a new instance of the StandardToolWindows class.

NameDescription
System_CAPS_pubmethodEquals(Object^)

Determines whether the specified object is equal to the current object.(Inherited from Object.)

System_CAPS_protmethodFinalize()

Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()

Serves as the default hash function. (Inherited from Object.)

System_CAPS_pubmethodGetType()

Gets the Type of the current instance.(Inherited from Object.)

System_CAPS_protmethodMemberwiseClone()

Creates a shallow copy of the current Object.(Inherited from Object.)

System_CAPS_pubmethodToString()

Returns a string that represents the current object.(Inherited from Object.)

NameDescription
System_CAPS_pubfieldSystem_CAPS_staticObjectBrowser

Gets the GUID for the object browser. This field is read-only.

System_CAPS_pubfieldSystem_CAPS_staticOutputWindow

Gets the GUID for the output window. This field is read-only.

System_CAPS_pubfieldSystem_CAPS_staticProjectExplorer

Gets the GUID for the solution explorer. This field is read-only.

System_CAPS_pubfieldSystem_CAPS_staticPropertyBrowser

Gets the GUID for the Properties window. This field is read-only.

System_CAPS_pubfieldSystem_CAPS_staticRelatedLinks

Gets the GUID for the related links frame. This field is read-only.

System_CAPS_pubfieldSystem_CAPS_staticServerExplorer

Gets the GUID for the server explorer. This field is read-only.

System_CAPS_pubfieldSystem_CAPS_staticTaskList

Gets the GUID for the task list. This field is read-only.

System_CAPS_pubfieldSystem_CAPS_staticToolbox

Gets the GUID for the Toolbox. This field is read-only.

These GUIDs can be used to access the standard tool windows that are available to the design-time environment.

The following code example demonstrates how to use StandardToolWindows to display a standard tool window. This code example is part of a larger example provided for the IUIService interface.

IUIService^ UIservice = dynamic_cast<IUIService^>(this->GetService( System::Windows::Forms::Design::IUIService::typeid ));
if ( UIservice != nullptr )
      UIservice->ShowToolWindow( StandardToolWindows::TaskList );

NamedPermissionSet

for full access to system resources. Demand values: LinkDemand, InheritanceDemand. Associated state:

.NET Framework
Available since 1.1

Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top
Show: