■ BrowserInteropHelper 클래스의 IsBrowserHosted 정적 속성을 사용해 브라우저 애플리케이션 (XBAP) 여부를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 |
using System.Windows.Interop; if(BrowserInteropHelper.IsBrowserHosted) { Console.WriteLine("WPF 브라우저 응용 프로그램 입니다."); } |