private void CreateFact(object sender, EventArgs e) { string name = Interaction.InputBox("Введите имя переменной", "Имя переменной", "Имя переменной"); currentFact = new FuzzyVariable(name, "", currMin, currMax); for (int i = 0; i < labels.Count; i++) { currentFact.AddSet(labels[i], functions[i]); } this.Hide(); }