private void BtnMostarListado_Click(object sender, RoutedEventArgs e) { WPF_ListadoClientes wlc = new WPF_ListadoClientes(); wlc.Owner = Window.GetWindow(this); wlc.Owner.Name = "WPF_ListadoClientes"; wlc.Show(); }
private void TlListadoClientes_Click(object sender, RoutedEventArgs e) { WPF_ListadoClientes Lclientes = new WPF_ListadoClientes(); Lclientes.Owner = Window.GetWindow(this); Lclientes.Owner.Name = "WPFMenu"; Lclientes.ShowDialog(); }