WPF hosting ActiveX control location
I'm hosting an ActiveX control in WPF form. It works well, no problem. But I can't find the property that sets the location of the ActiveX cont开发者_StackOverflow中文版rol on the WPF form (in the code). So it's stuck at the center of the screen for now.
the host is a System.Windows.Forms.Integration.WindowsFormsHost
Layout of controls in WPF is done through layout panels like Grid, StackPanel, DockPanel, etc. They all layout the controls they contain different, so it depends on what you want. The xaml code below uses a stackpanel which layouts the controls below each other.
<StackPanel>
<WindowsFormsHost ... />
</StackPanel>
精彩评论