I would write a cycle that begins in 1950 and ends this year. For each iteration of this loop, simply add an entry to the combo box with the current loop counter as content.
Some pseudo codes:
for (int i = 1950; i <= currentYear; i++) { ComboBoxItem item = new ComboBoxItem(); item.Content = i; myCombobox.Items.Add(item); }
source share