WPFユーザーコントロールの親
MainWindow実行時にロードするユーザーコントロールがあります。を含むウィンドウのハンドルをから取得できませんUserControl。 私は試しましたがthis.Parent、常にnullです。WPFのユーザーコントロールからコンテナーウィンドウへのハンドルを取得する方法を知っている人はいますか? コントロールのロード方法は次のとおりです。 private void XMLLogViewer_MenuItem_Click(object sender, RoutedEventArgs e) { MenuItem application = sender as MenuItem; string parameter = application.CommandParameter as string; string controlName = parameter; if (uxPanel.Children.Count == 0) { System.Runtime.Remoting.ObjectHandle instance = Activator.CreateInstance(Assembly.GetExecutingAssembly().FullName, controlName); UserControl control = instance.Unwrap() as UserControl; this.LoadControl(control); } } private void LoadControl(UserControl control) { …