■ BrowserInteropHelper 클래스의 IsBrowserHosted 정적 속성을 사용해 브라우저 호스트 여부를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
using System.Windows.Controls; using System.Windows.Interop; ... private TextBlock textBlock; ... if(BrowserInteropHelper.IsBrowserHosted) { // 주의 : 페이지가 브라우저에서 호스트된 경우만 BrowserInteropHelper.Source 속성을 조사할 수 있다. this.textBlock.Text = BrowserInteropHelper.Source.ToString(); } |