0

我在 WPF 中有 VLC ActiveX 插件控件。

<Grid> 
    <WindowsFormsHost  HorizontalAlignment="Stretch" Margin="0,0,0,0" Visibility="Hidden"   Name="windowsFormsHost1" VerticalAlignment="Stretch" ClipToBounds="True" SnapsToDevicePixels="True"  /> 
 </Grid> 

当我尝试应用一些动画时,我遇到了这个错误:

A WindowsFormsHost cannot be rotated. To suppress this error, handle the LayoutError event and set ThrowException to false. 

任何线索我们如何解决它?

4

1 回答 1

1

这个错误很简单。您根本无法旋转或调整WinFormsHost控件大小。见这里

于 2013-03-22T14:38:14.127 回答