J'ai un contrôle utilisateur que je charge dans un MainWindow
à l'exécution. Je ne peux pas obtenir une poignée sur la fenêtre contenant à partir du UserControl
.
J'ai essayé this.Parent
, mais c'est toujours nul. Quelqu'un sait-il comment obtenir un handle vers la fenêtre contenant à partir d'un contrôle utilisateur dans WPF?
Voici comment le contrôle est chargé:
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)
{
if (uxPanel.Children.Count > 0)
{
foreach (UIElement ctrl in uxPanel.Children)
{
if (ctrl.GetType() != control.GetType())
{
this.SetControl(control);
}
}
}
else
{
this.SetControl(control);
}
}
private void SetControl(UserControl control)
{
control.Width = uxPanel.Width;
control.Height = uxPanel.Height;
uxPanel.Children.Add(control);
}