StandardToolWindows.TaskList Veld

Definitie

Hiermee haalt u de GUID voor de takenlijst op. Dit veld is alleen-lezen.

public: static initonly Guid TaskList;
public static readonly Guid TaskList;
 staticval mutable TaskList : Guid
Public Shared ReadOnly TaskList As Guid 

Waarde van veld

Voorbeelden

In het volgende codevoorbeeld ziet u hoe StandardToolWindows u een standaardhulpprogrammavenster kunt weergeven. Dit codevoorbeeld maakt deel uit van een groter voorbeeld voor de IUIService interface.

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

Van toepassing op

Zie ook