зеркало из https://github.com/DeGsoft/maui-linux.git
28 строки
950 B
C#
28 строки
950 B
C#
|
namespace Xamarin.Forms
|
||
|
{
|
||
|
public class HtmlWebViewSource : WebViewSource
|
||
|
{
|
||
|
public static readonly BindableProperty HtmlProperty = BindableProperty.Create("Html", typeof(string), typeof(HtmlWebViewSource), default(string),
|
||
|
propertyChanged: (bindable, oldvalue, newvalue) => ((HtmlWebViewSource)bindable).OnSourceChanged());
|
||
|
|
||
|
public static readonly BindableProperty BaseUrlProperty = BindableProperty.Create("BaseUrl", typeof(string), typeof(HtmlWebViewSource), default(string),
|
||
|
propertyChanged: (bindable, oldvalue, newvalue) => ((HtmlWebViewSource)bindable).OnSourceChanged());
|
||
|
|
||
|
public string BaseUrl
|
||
|
{
|
||
|
get { return (string)GetValue(BaseUrlProperty); }
|
||
|
set { SetValue(BaseUrlProperty, value); }
|
||
|
}
|
||
|
|
||
|
public string Html
|
||
|
{
|
||
|
get { return (string)GetValue(HtmlProperty); }
|
||
|
set { SetValue(HtmlProperty, value); }
|
||
|
}
|
||
|
|
||
|
internal override void Load(IWebViewRenderer renderer)
|
||
|
{
|
||
|
renderer.LoadHtml(Html, BaseUrl);
|
||
|
}
|
||
|
}
|
||
|
}
|