当前位置:   article > 正文

WPFMvvm下拉框数据绑定_wpf下拉框绑定数据

wpf下拉框绑定数据

总结一下wpfMvvm下拉框数据的绑定与回填,下拉框的选择是很常见的一个功能,随这场景的变化我们要如何合理的使用下拉框的绑定方式,我这里一共讲两种方式的绑定和回填。

    第一种,也是比较常见的一种通过查询数据库内的数据绑定成下拉框

  1. <ComboBox Width="160" ItemsSource="{Binding CustomerInformation}" DisplayMemberPath="CustomerName" SelectedValuePath="CustomerInformationID"
  2. SelectedValue="{Binding CustomerInformationID,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" ></ComboBox>

首先XML上的一个下拉框组件设置ItemsSource="{Binding CustomerInformation}" 这样一个属性这就是设置数据源的。这个 SelectedValue="{Binding CustomerInformationID}  设置的是当前选中的值。

    在后台是创建一个List一个显示值,一个选中值,选中值的名称和页面上的ItemsSource的Binding一样这样它们之间就可以关联上。

  1. private List<S_CustomerInformation> _CustomerInformation;
  2. public List<S_CustomerInformation> CustomerInformation
  3. {
  4. get { return _CustomerInformation;
  5. }
  6. set{
  7. if (_CustomerInformation != value)
  8. {
  9. _CustomerInformation = value;
  10. RaisePropertyChanged(() => CustomerInformation);
  11. }
  12. }
  13. }

然后就是去查询数据库数据把数据给到选中值,这样就可以就可以把数据绑定到下拉框的下拉项上。

  1. List<S_CustomerInformation> dbSiteInformation = (
  2. from tbSiteInformation in myModel.S_CustomerInformation
  3. select tbSiteInformation).ToList();

如果我们需要数据回填那就是SelectedValue="{Binding CustomerInformationID}值和绑定我们的下拉项一样先在后台绑定Binding,然后回填时就直接给查询出来的ID就行了。

    第二种:如果说我们想直接给下拉框的下拉项,我们可以在页面上直接给下拉项。在页面上我们可以直接给<ComboBoxItem Content="禁用"></ComboBoxItem>这个下拉项,要什么就给什么,然后我们获取的话就是直接给下拉框的Text属性一个Binding,然后在后台绑定这个Binding,我们的下拉框选中值就是binding的值,其实简单一点说就是下拉框的文本值。

  1. <ComboBox Grid.Row="15" Grid.Column="3" Height="35" FontSize="14" x:Name="Jinyong" Text="{Binding Cuisine}" >
  2. <ComboBoxItem Content="禁用"></ComboBoxItem>
  3. <ComboBoxItem Content="不禁用"></ComboBoxItem>
  4. </ComboBox>
  5. /// <summary>
  6. /// 下拉框
  7. /// </summary>
  8. public string _Cuisine;
  9. public string Cuisine
  10. {
  11. get { return _Cuisine; }
  12. set
  13. {
  14. if (_Cuisine != value)
  15. {
  16. _Cuisine = value;
  17. RaisePropertyChanged(() => Cuisine);
  18. }
  19. }
  20. }

那如果说我们用这种方式来进行下拉框的绑定和选择,那我们的数据库保存的就是一串字符串,如果我们需要进行数据回填的话也很简单就是把数据查询出来给到下拉框的Text属性的Binding值就好了,那么它的文本值就是你数据库中的值了。换个角度来看其实就是你的下拉框选中值。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/493522
推荐阅读
相关标签
  

闽ICP备14008679号