IUIService.ShowToolWindow メソッド
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)

Dim instance As IUIService Dim toolWindow As Guid Dim returnValue As Boolean returnValue = instance.ShowToolWindow(toolWindow)
戻り値
ツール ウィンドウが正常に表示された場合は true。ツール ウィンドウが表示されなかった場合、または見つからなかった場合は false。

IUIService のインスタンスを取得し、サービスの ShowToolWindow メソッドを呼び出すコード例を次に示します。
Dim UIservice As IUIService = CType(Me.GetService( _ GetType(System.Windows.Forms.Design.IUIService)), IUIService) If Not (UIservice Is Nothing) Then UIservice.ShowToolWindow(StandardToolWindows.TaskList) End If
IUIService UIservice = (IUIService)this.GetService( typeof( System.Windows.Forms.Design.IUIService ) ); if( UIservice != null ) UIservice.ShowToolWindow(StandardToolWindows.TaskList);

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からIUIService.ShowToolWindow メソッドを検索する場合は、下記のリンクをクリックしてください。

- IUIService.ShowToolWindow メソッドのページへのリンク