Share via


StandardToolWindows.TaskList Campo

Definición

Obtiene el GUID de la lista de tareas. Este campo es de solo lectura.

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

Valor de campo

Ejemplos

En el ejemplo de código siguiente se muestra cómo usar StandardToolWindows para mostrar una ventana de herramientas estándar. Este ejemplo de código forma parte de un ejemplo más grande proporcionado para la IUIService interfaz .

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

Se aplica a

Consulte también