Beispiel #1
0
        private void AgregaUsuario_Click(object sender, RoutedEventArgs e)
        {
            AddUpdateUsuarios add = new AddUpdateUsuarios();

            add.Owner = this;
            add.Show();
        }
Beispiel #2
0
 private void RbtnEditarUsuario_Click(object sender, RoutedEventArgs e)
 {
     if (grUsuarios.ServidorSeleccionado != null)
     {
         AddUpdateUsuarios update = new AddUpdateUsuarios(grUsuarios.ServidorSeleccionado);
         update.Owner = this;
         update.Show();
     }
 }