c# UWP 绑定 ComboBox SelectedItem

c# UWP binding ComboBox SelectedItem

你好,我似乎无法弄清楚为什么我的组合框保持为空:/

在页面加载时,第一个组合框会填充国家(来自 JSON),当在第一个组合框中选择一个国家时,第二个组合框应该会填充。我正在尝试将 SelectedItem(国家/地区)作为 属性 中的字符串获取... SelectedItem 的类型为 ComboBoxItem ?我认为这是错误的地方。

排序可绑定属性所在的(视图)模型:

public class LocalityModel : NotifyProp
{
    #region properties
    private static List<LocalityJSON> dataList;
    public List<LocalityJSON> DataList
    {
        get
        {
                return dataList;
        }
        set {
            dataList = value;
            RaisePropertyChanged("Landen");
            RaisePropertyChanged("Gewesten");
        }
    }

    public List<string> Landen
    {
        get { if (DataList == null) return null; return (from s in DataList orderby s.Land select s.Land).Distinct().ToList<string>(); }
    }
    public string SelectedLand { get; set; }
    public List<string> Gewesten {
        get { if (DataList == null) return null; return (from s in DataList where s.Land.Equals(SelectedLand) select s.Gewest).Distinct().ToList<string>(); }
    }
    #endregion
    #region ctor
    public LocalityModel()
    {
        FillDataList();
    }
    #endregion
    #region methodes
    public async void FillDataList()
    {
        if (DataList == null)
        {
            DataList = await EVNT.Entries();
        }
    }
    #endregion
}

MainPage XAML(绑定):

<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}" DataContext="{Binding Source={StaticResource LocalityModel}}">
...
        <TextBlock x:Name="txbCountry" Style="{StaticResource InfoLabelCountry}" />
        <ComboBox x:Name="cboCountry" Style="{StaticResource CountryBox}" ItemsSource="{Binding Landen}" SelectedItem="{Binding SelectedLand, Mode=TwoWay}" />
        <TextBlock x:Name="txbGewest" Style="{StaticResource InfoLabelGewest}" />
        <ComboBox x:Name="cboGewest" Style="{StaticResource GewestBox}" ItemsSource="{Binding Gewesten}" />

INotifyPropertyChanged:

public class NotifyProp : INotifyPropertyChanged
{
    public event PropertyChangedEventHandler PropertyChanged;

    public void RaisePropertyChanged(string propertyName)
    {
        if (PropertyChanged != null) PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
    }
}

型号为JSON:

public class LocalityJSON
{
    public string FB_ID { get; set; }
    public string Land { get; set; }
    public string Gewest { get; set; }
    public string City { get; set; }
}

JSON反序列化(对问题不太重要):

public class EVNT
{
    public async static Task<List<LocalityJSON>> Entries()
    {
        using (var client = new HttpClient())
        {
            client.BaseAddress = new Uri(@"http://e-vnt.com/admin/core/api/");
            HttpResponseMessage response = await client.GetAsync("localityApi");
            if (response.IsSuccessStatusCode)
            {
                String s = await response.Content.ReadAsStringAsync();
                List<LocalityJSON> entries = JsonConvert.DeserializeObject<List<LocalityJSON>>(s);
                return entries;
            }
            else
                return null;
        }
    }
}

在您的 SelectedLand 属性 setter 中,您需要为 SelectedLand 和 Gewesten 触发 属性Changed 事件。

它可能看起来像这样

private string _SelectedLand;
public string SelectedLand
{
   get
   {
      return _SelectedLand;
   }
   set
   {
      _SelectedLand = value;
      RaisePropertyChanged("SelectedLand");
      RaisePropertyChanged("Gewesten");
   }
}

如果您不触发 属性Gewesten 的更改事件,则该组合框将不知道要重新加载的是值。