需要在WPF中使用COM组件

时间:2022-01-18 06:09:29

近段时间由于项目上的需求,需要在WPF中使用COM组件,并且由于软件界面设计等等原因,需要将部分控件显示在COM组件之上,由于WindowsFormsHost的一些原因,导致担任在WPF中的Winform控件或者COM组件总是置于顶层,笼罩其他WPF元素。

  为了解决样式构造问题,这里我给与了父子窗体方法实现,使用定位方法将子窗体置于父窗体的合适位置:

  

需要在WPF中使用COM组件

  这样,解决了设计上的问题,,但是新的问题随之又来了:使用Alt+Tab、或者任务打点器等等可以在Taskbar中看到多个窗体缩略图,如图:

    

需要在WPF中使用COM组件

  这样十分的影响用户体验,并且软件的其他窗口也可能被用户关失,降低软件的用户体验。

如何解决: 

  我们只需要将需要隐藏Alt+Tab窗体的  ShowInTaskbar 属性设置为 False 即可

<Window x:Class="Test.RevealModelFunctionMenu" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" WindowStyle="None" BorderBrush="Transparent" BorderThickness="0" ShowInTaskbar="False" AllowsTransparency="True" Background="Transparent" Title="FunctionMenu" Height="165" Width="420">

   来一张隐藏后的效果图:

    

需要在WPF中使用COM组件

PS:

 1. WindowsFormsHost is always the most top from WPF element  

    

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

2.   WindowsFormsHost 的构造注意事项