这个问题在这里已有答案:
我的Webview如下:
<WebView x:Name="WebView" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" HeightRequest="100">
<WebView.Source>
<HtmlWebViewSource Html="{Binding LongDesc}" />
</WebView.Source>
</WebView>
我如何设置自定义字体?
我像这样实现它并且它工作
WebView.Source = new HtmlWebViewSource
{
Html = @"<!DOCTYPE html><html><head><style> *{ font-family: sans-serif; font-size: 14}</style></head><body>" + Event.LongDesc + @"</body></html>",
};