private void AlternativesAddButton_Click(object sender, RoutedEventArgs e)
        {
            if (alternatives < 20)
            {
                if (alternativesEnterTextBox.Text != "")
                {
                    if (!listOfChoiceNames.Contains(alternativesEnterTextBox.Text))
                    {
                        listOfChoiceNames.Add(alternativesEnterTextBox.Text);
                        alternatives++;
                        alternativesListBox.ItemsSource = null;
                        alternativesListBox.ItemsSource = listOfChoiceNames;
                        alternativesEnterTextBox.Text   = "";

                        model.AddAlternative();
                        alternativesEnterTextBox.Text = "";
                    }
                    else
                    {
                        MessageBox.Show("В моделі вже є альтернатива з таким ім'ям!");
                    }
                }
                else
                {
                    MessageBox.Show("Порожні альтернативи заборонені!");
                }
            }
            else
            {
                MessageBox.Show("Більше 20 альтернатив не підтримуються!");
            }
        }