gpt4 book ai didi

c# - UWP 应用程序尝试将本地 html 文件加载到 webview 控件

转载 作者:行者123 更新时间:2023-11-30 14:51:42 24 4
gpt4 key购买 nike

我的通用 Windows 应用程序需要使用 webview 控件加载 html 文件。我尝试了这个问题中给出的以下解决方案。我无法让它发挥作用。

Load local html file in WebView Metro Style app

现在我的代码如下。它给我一个错误如下

Error CS4036 'IAsyncOperation' does not contain a definition for 'GetAwaiter' and no extension method 'GetAwaiter' accepting a first argument of type 'IAsyncOperation' could be found (are you missing a using directive for 'System'?) ReaderX c:\users\sumod\documents\visual studio 2015\Projects\ReaderX\ReaderX\Views\TextView.xaml.cs 28

这是我的代码

namespace ReaderX.Views
{
/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
/// </summary>
public sealed partial class TextView : Page
{
private NavPoints point;
public TextView()
{
this.InitializeComponent();
}

protected override async void OnNavigatedTo(NavigationEventArgs e)
{
point = (NavPoints)e.Parameter;
StorageFolder storageFolder = ApplicationData.Current.LocalFolder;
StorageFile sampleFile = await storageFolder.GetFileAsync("sample.txt");
var html = await Windows.Storage.FileIO.ReadTextAsync(sampleFile);

HTMLViewer.NavigateToString(html);
}
}
}

还有其他方法吗?

最佳答案

嘿,如果你有时间告诉我这是否有效:

在您的 Assets 文件夹中创建一个名为 MyHTMLPage 的 Html 文件,它有一个内容类型的构建操作和一个 Copy to Output to Copy Always。

HTML 文件:

<!DOCTYPE html>

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<div style="background-color: chartreuse">HELLO WORLD, from a webview</div>
</body>
</html>

在主页.xaml 上:

  <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<WebView x:Name="MyWebView" Width="200" Height="300"></WebView>
</Grid>

在 Main Page.cs 上:

 public sealed partial class MainPage : Page
{
public MainPage()
{
this.InitializeComponent();
Loaded += MainPage_Loaded;
}

private void MainPage_Loaded(object sender, RoutedEventArgs e)
{
string src = "ms-appx-web:///Assets/MyHTMLPage.html";
this.MyWebView.Navigate(new Uri(src));
}
}

这对你有用吗?

关于c# - UWP 应用程序尝试将本地 html 文件加载到 webview 控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33711916/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com