使用Id值绑定组合框名称
本文关键字:组合 绑定 Id 使用 | 更新日期: 2023-09-27 18:11:19
我有一个组合框控件。我从数据库中获得组合框值。这里是Id和Name。但是我只在组合框中绑定了Name。我想要的是,1. 如果我在组合框中选择任何名称,我需要在数据库中保存相应的Id。现在我可以从数据库绑定值并在组合框中显示名称。但是当我在组合框中选择任何值并尝试保存时,它在ID上显示空值。这是我的代码。请帮我找个解决办法。Xaml:
<ComboBox x:Name="cb_rentaltype" HorizontalAlignment="Left" Margin="150,5,0,0" VerticalAlignment="Top" Height="35" Width="200"
SelectedValue="{Binding MasterRentalType}"
DisplayMemberPath="RentalTypeName"
SelectedValuePath="RentalTypeId" />
My code Behind:
var status = new MasterRentalType();
List<MasterRentalType> listRentalType =
status.Get<MasterRentalType>() as
List<MasterRentalType>;
cb_rentaltype.ItemsSource = listRentalType;
和i要将Id绑定到Data上下文。下面是代码
private void FacilityDataBind()
{
cb_rentaltype.DataContext = ??
}
注意:MasterRentalType是我获取值的表。这里有ID和Name值。
public class MasterRentalType : EntityBase
{
public string RentalTypeId {get; set;}
public string RentalTypeName {get; set;}
}
如何绑定和保存id值?
你的问题是因为你有数据绑定的ComboBox.SelectedValue
属性到你的MasterRentalType
属性,我假设是类型MasterRentalType
,但然后你设置SelectedValuePath
属性为RentalTypeId
。所以你说*使SelectedValue
使用string RentalTypeId
属性,但随后将MasterRentalType
绑定到它。
有许多解决方案。纠正你的例子,你应该试试这个:
<ComboBox x:Name="cb_rentaltype" HorizontalAlignment="Left" Margin="150,5,0,0"
SelectedValue="{Binding MasterRentalType.RentalTypeId}"
DisplayMemberPath="RentalTypeName"
SelectedValuePath="RentalTypeId" />
或者,您可以这样做:
<ComboBox x:Name="cb_rentaltype" HorizontalAlignment="Left" Margin="150,5,0,0"
SelectedItem="{Binding MasterRentalType}"
DisplayMemberPath="RentalTypeName" />
要了解更多有关差异的信息,请查看MSDN上的如何:使用SelectedValue, SelectedValuePath和SelectedItem页面。
有几种方法可以实现这一点。其中一个实现如下:
xaml应该是这样的:
<ComboBox x:Name="cb_rentaltype" HorizontalAlignment="Left" Margin="150,5,0,0"
ItemsSource="{Binding MasterRentalTypeColl, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}"
SelectedItem="{Binding SelectedMasterRentalType, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}"
DisplayMemberPath="RentalTypeName">
</ComboBox>
MasterRentalType
类:
public class MasterRentalType : EntityBase, INotifyPropertyChanged
{
private string _RentalTypeId;
private string _RentalTypeName;
public string RentalTypeId
{
get { return _RentalTypeId; }
set
{
_RentalTypeId = value;
NotifyPropertyChanged("RentalTypeId");
}
}
public string RentalTypeName
{
get { return _RentalTypeName; }
set
{
_RentalTypeName = value;
NotifyPropertyChanged("RentalTypeName");
}
}
#region INotifyPropertyChanged Members
public event PropertyChangedEventHandler PropertyChanged;
private void NotifyPropertyChanged(String propertyName)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
#endregion
}
模型类:
public class MasterRentalModel: INotifyPropertyChanged
{
private MasterRentalType _SelectedMasterRentalType;
private List<MasterRentalType> _MasterRentalTypeColl = new List<MasterRentalType>();
public MasterRentalType SelectedMasterRentalType
{
get { return _SelectedMasterRentalType; }
set
{
_SelectedMasterRentalType = value;
NotifyPropertyChanged("SelectedMasterRentalType");
}
}
public List<MasterRentalType> MasterRentalTypeColl
{
get { return _MasterRentalTypeColl; }
set { _MasterRentalTypeColl = value; }
}
#region INotifyPropertyChanged Members
public event PropertyChangedEventHandler PropertyChanged;
private void NotifyPropertyChanged(String propertyName)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
#endregion
}
在代码后面,你只需要将模型分配给你的ComboBox的DataContext
;你可以实现这个任何其他函数(这里我已经在Window
的Loaded
事件的事件处理程序中实现了它):
private void Window_Loaded(object sender, RoutedEventArgs e)
{
MasterRentalModel masterRentalModel = new MasterRentalModel();
// Fill the list of RentalType here
masterRentalModel.MasterRentalTypeColl.Add(new MasterRentalType() { RentalTypeId = "1", RentalTypeName = "Monthly" });
masterRentalModel.MasterRentalTypeColl.Add(new MasterRentalType() { RentalTypeId = "2", RentalTypeName = "Quarterly" });
masterRentalModel.MasterRentalTypeColl.Add(new MasterRentalType() { RentalTypeId = "1", RentalTypeName = "Yearly" });
cb_rentaltype.DataContext = masterRentalModel;
}
当用户改变选择时,SelectedMasterRentalType
将被更新。在SelectedMasterRentalType
中,你可以得到RentalTypeId
和RentalTypeName
。如果您遵循适当的绑定,您的模型将始终更新;这就是WPF的精髓。