private void FillComboBox()
 {
     CB_InterestCategory.ItemsSource       = interestLogic.GetAllInterestCategories();
     CB_InterestCategory.DisplayMemberPath = "Name";
     CB_InterestCategory.SelectedValuePath = "CategoryId";
     CB_InterestCategory.SelectedIndex     = 0;
 }
Esempio n. 2
0
        private void FillComboboxes()
        {
            CBox_Region.ItemsSource = new List <string> {
                "Groningen", "Friesland", "Drenthe", "Overijssel", "Flevoland", "Gelderland", "Utrecht", "Noord-Holland", "Zuid-Holland", "Zeeland", "Noord-Brabant", "Limburg"
            };
            CBox_Gender.ItemsSource = new List <string> {
                "Female", "Male", "Unassigned"
            };

            CB_InterestCategory.ItemsSource       = _interestLogic.GetAllInterestCategories();
            CB_InterestCategory.DisplayMemberPath = "Name";
            CB_InterestCategory.SelectedValuePath = "CategoryId";
        }