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 BeautySaloon { public partial class AdmKlientForm : Form { public AdmKlientForm() { InitializeComponent(); } private void AdmKlientForm_Load(object sender, EventArgs e) { // TODO: данная строка кода позволяет загрузить данные в таблицу "beauty_saloonDataSet.Client". При необходимости она может быть перемещена или удалена. this.clientTableAdapter.Fill(this.beauty_saloonDataSet.Client); } private void editButton_Click(object sender, EventArgs e) { EditKlientForm form = new EditKlientForm(); form.Show(); this.Close(); } private void ExitButton_Click(object sender, EventArgs e) { AdminForm form = new AdminForm(); form.Show(); this.Close(); } } }