private void buttonOpenSupplies_Click(object sender, EventArgs e) { //Задаем новую форму из класса Потребности и открываем ее Form formDemand = new FormDemand(); formDemand.Show(); }
private void buttonOpenSupplies_Click(object sender, EventArgs e) { Form formDemand = new FormDemand(); formDemand.Show(); }