共用方式為


WebBrowser.AllowWebBrowserDrop 屬性

定義

取得或設定值,表示 WebBrowser 控制項是否巡覽至已拖曳至其本身的文件。

public:
 property bool AllowWebBrowserDrop { bool get(); void set(bool value); };
public bool AllowWebBrowserDrop { get; set; }
member this.AllowWebBrowserDrop : bool with get, set
Public Property AllowWebBrowserDrop As Boolean

屬性值

如果控制項接受已拖曳至其本身的文件則為 true,否則為 false。 預設為 true

例外狀況

這個 WebBrowser 執行個體已不再有效。

無法從基礎 ActiveX IWebBrowser2 控制項中擷取 WebBrowser 介面實作的參考。

範例

下列程式代碼範例示範如何使用 AllowWebBrowserDrop 屬性。

webBrowser1.AllowWebBrowserDrop = false;
webBrowser1.AllowWebBrowserDrop = False

備註

根據預設, WebBrowser 控件會自動巡覽至已卸除的檔。 當您使用控件做為泛型瀏覽器時,此行為很有用。 如果您使用控制項來顯示專為應用程式設計的內容,例如 HTML 型使用者協助,請將 屬性設定 AllowWebBrowserDropfalse ,以防止顯示其他內容。 當您想要隱藏使用 WebBrowser 控件的事即時,這特別有用,例如建立使用者介面,以順暢地結合 Web 型控件與 Windows Forms 控件。

您可以將和 IsWebBrowserContextMenuEnabled 屬性設定WebBrowserShortcutsEnabledfalse來停用其他標準瀏覽器功能。

注意

這個屬性與 屬性無關 Control.AllowDrop ,而且不會造成拖放事件,例如 Control.DragDrop 控件發生的事件。

適用於

另請參閱