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