Form1 クラスのフォームとその内部 (ElementHost 内) に WPF ユーザー コントロールがあります。このコントロールの分離コードから Form1 オブジェクトを取得するにはどうすればよいですか?
コードは次のとおりです。
/// <summary>
/// Interaction logic for UserControl1.xaml
/// </summary>
public partial class UserControl1 : UserControl
{
public UserControl1()
{
InitializeComponent();
}
private void Btn_Click(object sender, RoutedEventArgs e)
{
// I'd like to access the form here
}
}