using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace GeoTema { public partial class UserMenu : Form { public UserMenu() { InitializeComponent(); } private void btnChange_Click(object sender, EventArgs e) { this.Hide(); ChangePassword Change1 = new ChangePassword(); Change1.ShowDialog(); this.Close(); } private void btnViewData_Click(object sender, EventArgs e) { this.Hide(); ViewData View1 = new ViewData(); View1.ShowDialog(); this.Close(); } private void btnLogout_Click(object sender, EventArgs e) { this.Hide(); MainMenu Main1 = new MainMenu(); Main1.ShowDialog(); this.Close(); } } }