Beispiel #1
0
        private void InsertButton_Click(object sender, EventArgs e)
        {
            var index = Footballers.IndexOf((Footballer)FootballersSource.Current);

            if (index == -1)
            {
                AddButton_Click(sender, e);
                return;
            }
            FootballersSource.Insert(index, GetFootballer());
        }