共用方式為


IUIService.ShowToolWindow(Guid) 方法

定義

顯示指定的工具視窗。

public:
 bool ShowToolWindow(Guid toolWindow);
public bool ShowToolWindow (Guid toolWindow);
abstract member ShowToolWindow : Guid -> bool
Public Function ShowToolWindow (toolWindow As Guid) As Boolean

參數

toolWindow
Guid

工具視窗的 Guid 識別項。 這可以是自訂的 Guid,或者 StandardToolWindows 的其中一個預先定義值。

傳回

Boolean

如果已順利顯示工具視窗,則為 true,如果無法顯示或找不到此視窗,則為 false

範例

下列程式碼範例會嘗試取得 的 IUIService 實例,並叫用 ShowToolWindow 服務的 方法。

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

適用於

另請參閱