Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
770
ContentPane appearance in floating mode when using a WindowsFormsHost element
posted

Hello,

I have a xamlDockManager > SplitPane > ContentPane in a wpf window. 

I override the ToolWindowLoaded event of the xamlDockManager class to put some transparence when the ContentPane is in floating mode. 

Using this code : 

 void xamDockManager1_ToolWindowLoaded(object sender, Infragistics.Windows.DockManager.Events.PaneToolWindowEventArgs e)

{

 

            e.Window.UseOSNonClientArea = false;

            e.Window.Opacity = 0.8;

}

 

Everything is fine but when I put a tag <WindowsFormsHost> in the ContentPane xaml code, all the ContentPane turns grey except the WindowsFormsHost which turns white. 

It only happens when the pane is in floating mode, after calling the ToolWindowLoaded event.

There is no problem when the ContentPane is docked (because it doesnt try to put some opacity to the pane, I think).

Is this a bug ? Is there any way to solve it ?

(I'm using Infragistics For WPF 10.3)

 

 

Parents Reply Children
No Data