StandardToolWindows クラス
アセンブリ: System (system.dll 内)


これらの GUID は、デザイン時環境で使用できる標準ツール ウィンドウにアクセスするために使用できます。
![]() |
---|
このクラスに適用される HostProtectionAttribute 属性の Resources プロパティの値は、SharedState です。HostProtectionAttribute は、デスクトップ アプリケーション (一般的には、アイコンをダブルクリック、コマンドを入力、またはブラウザに URL を入力して起動するアプリケーション) には影響しません。詳細については、HostProtectionAttribute クラスのトピックまたは「SQL Server プログラミングとホスト保護属性」を参照してください。 |

StandardToolWindows を使用して標準のツール ウィンドウを表示する方法を次のコード例に示します。このコード例は IUIService インターフェイスのトピックで取り上げているコード例の一部分です。
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);


System.ComponentModel.Design.StandardToolWindows


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 によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- StandardToolWindows クラスのページへのリンク