You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Version 89.0.170.0
Nuget
architecture x86
Windows 10
WinForms
What steps will reproduce the problem?
The dock property of the control is not docking the control Full inside the Tab Container until the second time we open the form.
What is the expected output? What do you see instead?
1st time we open the form:
2nd time we open the form
For the rest of the session the browser control displays properly.
Please provide any additional information below.
We create the instance of the control in the constructor of the form that ends up being the shown inside the tab.
` InitializeComponent();
In the load of the application we are initializing settings :
if (!Cef.IsInitialized)
{
Cef.EnableHighDPISupport();
var settings = new CefSettings();
Cef.Initialize(settings, performDependencyCheck: false, browserProcessHandler: null);
}
NOTE - We discovered that be putting this in app manifest it fixes this issue but breaks the rest of the application :)
Bug Report
Version 89.0.170.0
Nuget
architecture x86
Windows 10
WinForms
What steps will reproduce the problem?
The dock property of the control is not docking the control Full inside the Tab Container until the second time we open the form.
What is the expected output? What do you see instead?
1st time we open the form:
2nd time we open the form
For the rest of the session the browser control displays properly.
Please provide any additional information below.
We create the instance of the control in the constructor of the form that ends up being the shown inside the tab.
` InitializeComponent();
`private void OnIsBrowserInitializedChanged(object sender, EventArgs e)
{
var b = ((ChromiumWebBrowser)sender);
In the load of the application we are initializing settings :
NOTE - We discovered that be putting this in app manifest it fixes this issue but breaks the rest of the application :)
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"> <ms_windowsSettings:dpiAware xmlns:ms_windowsSettings="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</ms_windowsSettings:dpiAware> </asmv3:windowsSettings>
Thanks for the help.
The text was updated successfully, but these errors were encountered: