Problem
Global properties cannot be used with WebView::Url
Passing the url as a direct literal works:
<NativeViewHost>
<WebView Url="http://www.google.com" />
</NativeViewHost>
But assigning from a global does not and silently fails (as if no Url
was specified):
<string ux:Global="Url" ux:Value="http://www.google.com" />
<NativeViewHost>
<WebView Url="{Url}" />
</NativeViewHost>
Also, attempting to manually us:Binding
in the “Url” reports:
Fuse.Controls.WebView does not expose a bindable property called 'Url'
Expected Behaviour
WebView::Url
should either be bindable, or the docs should make clear this is not possible.