通过数据绑定WPF / MVVM,从数据库填充的组合框中获取所选值,以进行比较

时间:2019-07-19 17:42:45

标签: c# wpf mvvm combobox selectedvalue

我是C#的初学者;该项目是使用实体框架和视图模型在Visual Studio(wpf)中完成的。我从数据库中仅填充了一个名为“ Employees”的组合框。我想做的是获取变量中的选定项目值(或直接将其与数据库中存储的名称进行比较,以获取与该名称关联的所有其他表列;在我的情况下,我有年龄,属性..etc )

如果我直接进入MainWindow.xaml.cs,则可以轻松使用

Object selectedItem = ComboBoxName.SelectedItem; 它完成了工作。但是,我需要在MainWindowsViewModel.cs中实现它。我已经找到有关SelectedItem="{Binding ..., Mode=...}"的信息,并尝试了几种解决方案,但找不到任何可行的解决方案。

我在XAML中的组合框:

 <ComboBox x:Name="comboPersonal" Grid.Column="6" HorizontalAlignment="Left" Margin="13,60,-62,0" Grid.Row="1" VerticalAlignment="Top" Width="183" ItemsSource="{Binding ang1}" SelectedItem="{Binding Path=Employers, Mode=TwoWay}"  />

组合框是通过以下方式填充的:

 public IList<string> ang1
        {
            get
            {
                using (ProbaHotel_1Entities db = new ProbaHotel_1Entities())
                {
                    var employee = db.Personal.Select(ang => ang.Nume).ToList();



                    return employee.ToList();
                }
            }
        }

在我的MainWindowViewModel中(主要是错误的):

 public IList<string> Employers
        {
            get
            {
                using (ProbaHotel_1Entities db = new ProbaHotel_1Entities())
                {
                    var vNume = db.Personal.Select(ang => ang.Nume);
                    this.NumeText = vNume.ToString();

                }
                return this.Employers;
            }

            set { }
        }

NumeText是文本框绑定到的变量。当我从组合框选择一个项目时,我希望将该值传送到文本框。 Select语句错过了WHERE以将selected valuenames in the database

进行比较

文本框XAML:

<TextBox x:Name="text_nume" HorizontalAlignment="Left" Height="23"  TextWrapping="Wrap" Text="{Binding NumeText}" VerticalAlignment="Top" Width="89" Grid.Column="1" Grid.Row="0" />

在我的MainWindowViewModel中:

private string numeText;
        public string NumeText
        {
            get
            {
                return this.numeText;
            }
            set
            {

                this.numeText = value;
            }
        }

1 个答案:

答案 0 :(得分:0)

您可以使用包含模型的List并绑定到组合框itemsource,还可以将DisplayMemberPath绑定为“ Name”,这是模型的属性,并将SelectedItem绑定到此模型。

请参见代码。我使用了伪字符串值。在您的情况下,应该按照您提到的从DB中填充它。请注意,在SelectedEmployee的设置器中,我正在根据您的要求向NumText赋值。所选项目更改后,将立即对其进行分配并显示在XAML文本框中

在您的情况下,您错误地将SelectedItem分配给list。它应该与您绑定的itemsource有关。您创建了单独的列表,其中一个用于itemsource,一个用于所选项目。而且我也看不到代码中与INotifyPropertyChanged相关的属性设置器中的任何更改。

XAML:

<Window x:Class="WpfApplication13.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:WpfApplication13"
        mc:Ignorable="d"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="50*"/>
            <RowDefinition Height="50*"/>
        </Grid.RowDefinitions>
        <TextBox x:Name="text_nume" HorizontalAlignment="Center" Height="23"  TextWrapping="Wrap" Text="{Binding NumeText}" VerticalAlignment="Center" Width="89" Grid.Row="0" />
        <ComboBox x:Name="comboPersonal" Grid.Row="1" Height="30" Width="100" HorizontalAlignment="Center" DisplayMemberPath="Name" VerticalAlignment="Center" Margin="13,60,-62,0"  ItemsSource="{Binding Ang1}" SelectedItem="{Binding SelectedEmployee}"  />
    </Grid>
</Window>

ViewModel:

 public class ViewModel : INotifyPropertyChanged
    {

        #region Constants and Enums

        #endregion

        #region Private and Protected Member Variables 
        private IList<EmployeeModel> ang1;
        EmployeeModel _selectedEmployee;
        private string numeText;
        #endregion

        #region Private and Protected Methods
        private void OnPropertyChanged(string propName)
        {
            PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propName));
        }
        #endregion

        #region Constructors
        public ViewModel()
        {
            Ang1 = new List<EmployeeModel>();
            Ang1.Add(new EmployeeModel() {  Name="1"});
            Ang1.Add(new EmployeeModel() { Name = "2" });
        }
        #endregion

        #region Public Properties
        public IList<EmployeeModel> Ang1
        {
            get
            {
                return ang1;
            }
            set
            {
                ang1 = value;
                OnPropertyChanged(nameof(Ang1));
            }
        }

        public EmployeeModel SelectedEmployee
        {
            get
            {
                return _selectedEmployee;
            }
            set
            {
                _selectedEmployee = value;
                NumeText = value.Name;
                OnPropertyChanged(nameof(SelectedEmployee));
            }
        }

        public string NumeText
        {
            get
            {
                return this.numeText;
            }
            set
            {

                this.numeText = value;
                OnPropertyChanged(nameof(NumeText));
            }
        }
        #endregion

        #region Public Methods
        public event PropertyChangedEventHandler PropertyChanged;

        #endregion


    }

型号:

 public class EmployeeModel
    {
        public string Name { get; set; }
    }

我使用INotifyPropertyChanged进行绑定通知。让我知道这是否有帮助