我的Webview如下:
<WebView x:Name="WebView" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" HeightRequest="100">
<WebView.Source>
<HtmlWebViewSource Html="{Binding LongDesc}" />
</WebView.Source>
</WebView>
如何设置自定义字体?
答案 0 :(得分:0)
我是这样实现的,并且有效
WebView.Source = new HtmlWebViewSource
{
Html = @"<!DOCTYPE html><html><head><style> *{ font-family: sans-serif; font-size: 14}</style></head><body>" + Event.LongDesc + @"</body></html>",
};