зеркало из https://github.com/DeGsoft/maui-linux.git
22 строки
321 B
C#
22 строки
321 B
C#
using System;
|
|
|
|
using Xamarin.Forms;
|
|
|
|
namespace Xamarin.Forms.Controls
|
|
{
|
|
public class WebsiteView : BaseView
|
|
{
|
|
public WebsiteView(string site, string title)
|
|
{
|
|
this.Title = title;
|
|
var webView = new WebView();
|
|
webView.Source = new UrlWebViewSource
|
|
{
|
|
Url = site
|
|
};
|
|
Content = webView;
|
|
}
|
|
}
|
|
}
|
|
|