コード例 #1
0
        private async void LoadControls()
        {
            dobDay.ItemsSource   = _dateModel.DayPicker();
            dobMonth.ItemsSource = _dateModel.MonthPicker();

            IList <Category> categoryList = await _customerDataService.GetCustomerCategories();

            catPicker.ItemsSource = categoryList.ToList();
        }
コード例 #2
0
 private void LoadControls()
 {
     days   = _dateModel.DayPicker();
     months = _dateModel.MonthPicker();
 }