从 WPF 用户控件访问 Winform
Accessing a Winform from a WPF user control
我正在尝试从其上的 wpf 用户控件访问 winform。我意识到当您将 WPF 用户控件放到 winform 上时会自动创建一个 ElemetHost,但我不确定如何让一些简单的东西工作。例如:
如果我在 WPF 控件上有一个按钮,我怎样才能让它关闭用户控件所在的 winform?
谢谢
Form1 已加载
this.elementHost1.Child = new UserControl1() { Tag = this };
WpfUserControlXAML
<UserControl x:Class="WindowsFormsApp7.UserControl1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:WindowsFormsApp7"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid Background="DarkSlateGray">
<Button Name="btnClose" Width="100" Height="25" Content="Close" Click="BtnClose_Click" />
</Grid>
</UserControl>
btn关闭WpfUserControl的点击
private void BtnClose_Click(object sender, RoutedEventArgs e)
{
Form1 form = (Form1)this.Tag;
form.Close();
}
使用 WPFUserControl 的标签 属性 作为引用持有者。
我正在尝试从其上的 wpf 用户控件访问 winform。我意识到当您将 WPF 用户控件放到 winform 上时会自动创建一个 ElemetHost,但我不确定如何让一些简单的东西工作。例如: 如果我在 WPF 控件上有一个按钮,我怎样才能让它关闭用户控件所在的 winform?
谢谢
Form1 已加载
this.elementHost1.Child = new UserControl1() { Tag = this };
WpfUserControlXAML
<UserControl x:Class="WindowsFormsApp7.UserControl1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:WindowsFormsApp7"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid Background="DarkSlateGray">
<Button Name="btnClose" Width="100" Height="25" Content="Close" Click="BtnClose_Click" />
</Grid>
</UserControl>
btn关闭WpfUserControl的点击
private void BtnClose_Click(object sender, RoutedEventArgs e)
{
Form1 form = (Form1)this.Tag;
form.Close();
}
使用 WPFUserControl 的标签 属性 作为引用持有者。