NativeWebDialog
Overview
NativeWebDialog
is a dialog window that hosts a native web browser implementation. It provides a way to display web content in a separate window, particularly useful for platforms like Linux where embedded WebView controls might not be available.
Properties
Title
public string? Title { get; set; }
Gets or sets the dialog window title.
CanUserResize
public bool CanUserResize { get; set; }
Gets or sets whether the dialog can be resized by the user.
Source
public Uri Source { get; set; }
The URI of the top-level document displayed in the WebView. Setting this property is equivalent to calling Navigate()
.
Default value: about:blank
CanGoBack
public bool CanGoBack { get; }
Indicates whether the WebView can navigate to a previous page in the navigation history.