WebBrowser.Source 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定 Uri 中目前裝載之文件的 WebBrowser。
public:
property Uri ^ Source { Uri ^ get(); void set(Uri ^ value); };
public Uri Source { [System.Security.SecurityCritical] get; set; }
public Uri Source { get; set; }
[<get: System.Security.SecurityCritical>]
member this.Source : Uri with get, set
member this.Source : Uri with get, set
Public Property Source As Uri
屬性值
Uri目前 HTML 檔案的 。
- 屬性
例外狀況
WebBrowser 執行個體已經無效。
無法擷取基礎原生 WebBrowser
的參考。
從部分信任中執行的應用程式巡覽至不在來源網站上的 Uri。
範例
下列範例示範如何使用標記,將 WebBrowser 設定為僅流覽至 HTML 檔案。
<!-- Web Browser Control that hosts a web page. -->
<WebBrowser x:Name="webBrowser" Source="http://msdn.com"
Width="600" Height="600" />
備註
設定來源屬性會導致 WebBrowser 巡覽至 所 Uri 指定的檔。 Uri如果 為 null
,則會顯示空白檔, (「about:blank」) 。