组合框选择在带有鼠标的 WPF 中不起作用
本文关键字:WPF 不起作用 鼠标 选择 组合 | 更新日期: 2023-09-27 18:35:15
首先让我输入我的代码。
股票组实体类型
public partial class StockGroup
{
public StockGroup()
{
this.StockGroups = new HashSet<StockGroup>();
this.Stocks = new HashSet<Stock>();
}
public int ID { get; set; }
public string GroupName { get; set; }
public Nullable<int> ParentID { get; set; }
public Nullable<System.DateTime> CreatedOn { get; set; }
public Nullable<System.DateTime> ModifiedOn { get; set; }
public virtual ICollection<StockGroup> StockGroups { get; set; }
public virtual StockGroup Parent { get; set; }
public virtual ICollection<Stock> Stocks { get; set; }
public override string ToString() { return GroupName; }
public override bool Equals(object obj)
{
StockGroup stkGrp = obj as StockGroup;
if (stkGrp == null)
return false;
else
return ID.Equals(stkGrp.ID);
}
public override int GetHashCode()
{
return ID.GetHashCode();
}
}
来自ViewModel的属性,它使用Caliburn.Micro绑定到ComboBox。
private IList<StockGroup> _groupParents;
public IList<StockGroup> GroupParents
{
get
{
return _groupParents;
}
set
{
_groupParents = value;
NotifyOfPropertyChange(() => GroupParents);
}
}
组合框 XAML
<ComboBox Name="GroupParents" ToolTip="group parents"
Margin="5,0,5,5"
IsSynchronizedWithCurrentItem="True"
core:Message.Attach="[Event GotFocus]=[LoadGroupParents]"
IsEditable="True"
DisplayMemberPath="GroupName"
SelectedValuePath="ID"
IsReadOnly="False">
<ComboBox.ItemsPanel>
<ItemsPanelTemplate>
<VirtualizingStackPanel />
</ItemsPanelTemplate>
</ComboBox.ItemsPanel>
</ComboBox>
一切都很好,直到这里,combobox从数据库中获取所有数据。我有在组合框中选择的第一条记录。当我使用鼠标选择其他组合框项时,所选项无法更改,并且仍在第一条记录中。组合框选择适用于"按下键",但不适用于"鼠标"。
对于 SelectedItem,我有一个名为 SelectedGroupParent 的属性,当我通过鼠标更改时,其值会更改,但它不会显示在 ComboBox 文本框中。
请对此提出一些解决方法。我已经尝试了一路,但它不起作用。即使绑定到CollectionView也不起作用。
那是
我的错。
实际上,我正在 GotFocus 上重新加载 ComboBox,这使得所选项目始终位于索引 1 处。