зеркало из https://github.com/DeGsoft/maui-linux.git
29 строки
740 B
C#
29 строки
740 B
C#
using Xamarin.Forms.CustomAttributes;
|
|
using Xamarin.Forms.Internals;
|
|
using System.Collections.ObjectModel;
|
|
|
|
#if UITEST
|
|
using Xamarin.UITest;
|
|
using NUnit.Framework;
|
|
#endif
|
|
|
|
|
|
namespace Xamarin.Forms.Controls.Issues
|
|
{
|
|
[Preserve(AllMembers = true)]
|
|
[Issue(IssueTracker.Github, 1864, "[WPF] Xamarin.Forms WPF load local html throw ArgumentException with message 'Relative URIs are not allowed'", PlatformAffected.WPF)]
|
|
public class Issue1864 : TestContentPage
|
|
{
|
|
protected override void Init()
|
|
{
|
|
WebView webView = new WebView();
|
|
var source = new HtmlWebViewSource()
|
|
{
|
|
Html = @"<html><body> <h1>Xamarin.Forms</h1> <p>Welcome to WebView.</p> </body> </html>"
|
|
};
|
|
webView.Source = source;
|
|
Content = webView;
|
|
}
|
|
}
|
|
}
|