WindowsFormsHost is always the most top from WPF element

后端 未结 4 1502
长发绾君心
长发绾君心 2020-12-01 17:11

how to set the z-index windowsformhost that they are not always at the top of the WPF element ?

相关标签:
4条回答
  • 2020-12-01 17:15

    In my situation my WindowsFormsHost is in a two row Grid. The bottom row has a StackPanel in it that changes Height depending on what it contains. I handle that StackPanel's LayoutUpdated event to resize my WindowsFormsHost by subtracting it's ActualHeight from the Grid's ActualHeight. Be sure to use ActualHeight not Height.

         void ResizeWinhost()
        {
            mainGrid.UpdateLayout();
            detailPanel.UpdateLayout();
            winHost.Height = mainGrid.ActualHeight - detailPanel.ActualHeight - 5;
        }
    
    0 讨论(0)
  • 2020-12-01 17:16

    Update, a few years later (2016-09):

    My following answer, as noted by the top comment, is no longer valid, and was not available in the final version of .NET 4.5, or subsequent releases. Unfortunately, the link I included still has z-ordering information for HwndHosts present for the "current version" of .NET, which could lead some to believe this functionality does, in fact, exist. It doesn't. There is no work-around.

    Original answer:

    A year later, things have changed a bit with .NET 4.5. For those who stumbled upon this, much as I did, here is a more updated excerpt from Walkthrough: Arranging Windows Forms Controls in WPF on MSDN:

    By default, visible WindowsFormsHost elements are always drawn on top of other WPF elements, and they are unaffected by z-order. To enable z-ordering, set the IsRedirected property of the WindowsFormsHost to true and the CompositionMode property to Full or OutputOnly.

    All you need to do, when using .NET 4.5, is add the following attributes to your WindowsFormsHost element IsRedirected="True" and CompositionMode="Full" or CompositionMode="OutputOnly".

    0 讨论(0)
  • 2020-12-01 17:25

    I've just encountered the same problem.

    There is a potential workaround - depending upon the nature of the Windows Host window control and the WPF element you want to appear:

    I bound the the WindowsFormsHost control's Visibility to a property on my view model to enable me to hide the host (and the controls on it) when I want to display the WPF that we want to appear over it.

    0 讨论(0)
  • According to MSDN (Layout Considerations for the WindowsFormsHost Element)

    A hosted Windows Forms control is drawn in a separate HWND, so it is always drawn on top of WPF elements.

    This is a design limitation

    Another good article from MSDN that explains possible issues when using different graphical technologies in Windows is Technology Regions Overview

    However googling I found that there seem to be some hackings for this (known as airspace restriction)

    One hack (never tried it personally so not sure if it works) is at this link

    0 讨论(0)
提交回复
热议问题