Hello,
I have a responsive HTML page that is not rendering properly with the WebView control. The control is showing white areas and it appears to be cutting off the rest of the page.
Any suggestions?
Greg
Screen shot of WPF dialog with WebView<Grid Height="768" Width="1024">
<eo:WebControl HorizontalAlignment="Left" Name="webControl1" VerticalAlignment="Top" Loaded="webControl1_Loaded">
<eo:WebControl.WebView>
<eo:WebView>
</eo:WebView>
</eo:WebControl.WebView>
</eo:WebControl>
</Grid>
AuthUserControl1 authUserControl = new AuthUserControl1();
authUserControl.webControl1.WebView.Url=Globals.ThisAddIn.RedirectUrl;
authUserControl.webControl1.Height = 768;
authUserControl.webControl1.Width = 1024;
Window loginWindow = new Window
{
Title = "Enterprise Login",
Content = authUserControl,
Height = 768,
Width = 1024
};