WPF 精修篇 WPF嵌入Winfrom控件
Posted lonelyxmas
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF 精修篇 WPF嵌入Winfrom控件相关的知识,希望对你有一定的参考价值。
原文:WPF 精修篇 WPF嵌入Winfrom控件
先增加DLL 支持
使用 WindowsFormsHost 来加载Forms的控件
引用命名空间
xmlns:forms="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
- <WindowsFormsHost Grid.Column="1">
- <forms:PropertyGrid x:Name="Property">
-
- </forms:PropertyGrid>
- </WindowsFormsHost>
效果
代码
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="322*"/>
- <ColumnDefinition Width="195*"/>
- </Grid.ColumnDefinitions>
- <TextBlock x:Name="TextBlock" TextWrapping="Wrap" Text="TextBlock" />
- <WindowsFormsHost Grid.Column="1">
- <forms:PropertyGrid x:Name="Property">
-
- </forms:PropertyGrid>
- </WindowsFormsHost>
- </Grid>
- public MainWindow()
- {
- InitializeComponent();
- Property.SelectedObject = TextBlock;
- }
以上是关于WPF 精修篇 WPF嵌入Winfrom控件的主要内容,如果未能解决你的问题,请参考以下文章