maui-linux/Xamarin.Forms.Core/HtmlWebViewSource.cs

28 строки
950 B
C#
Исходник Обычный вид История

2016-03-22 23:02:25 +03:00
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);
}
}
}