StandardToolWindows.TaskList 字段
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取任务列表的 GUID。 此字段为只读。
public: static initonly Guid TaskList;
public static readonly Guid TaskList;
staticval mutable TaskList : Guid
Public Shared ReadOnly TaskList As Guid
字段值
示例
下面的代码示例演示如何使用 StandardToolWindows 显示标准工具窗口。 此代码示例是为 接口提供的更大示例的 IUIService 一部分。
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