StandardToolWindows Class
.NET Framework 3.0
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)
Assembly: System (in system.dll)
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.
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
IUIService uiService = (IUIService)this.GetService(System.Windows.
Forms.Design.IUIService.class.ToType());
if (uiService != null) {
uiService.ShowToolWindow(StandardToolWindows.TaskList);
}
- NamedPermissionSet for full access to system resources. Demand values: LinkDemand, InheritanceDemand. Associated state: FullTrust
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: