IUIService.ShowToolWindow(Guid) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
顯示指定的工具視窗。
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 的其中一個預先定義值。
傳回
如果已順利顯示工具視窗,則為 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