gpt4 book ai didi

Silverlight ComboBox 强制重新选择 SelectedItem

转载 作者:行者123 更新时间:2023-12-01 22:55:37 24 4
gpt4 key购买 nike

我有一个绑定(bind)到 ComboBox 的项目列表。当用户选择一个项目时,我想取消选择并选择一个不同的项目。这必须在 SelectedItem 绑定(bind)到的属性的 setter 中发生。我正在使用 Silverlight 3。

我的 ComboBox 中每个项目的数据模型:

public class DataItem
{
public int Id { get; set; }
public string Name { get; set; }
}

设置为 DataContext 的对象:
public class DataContainer : INotifyPropertyChanged
{

public DataContainer()
{
itemList = new List<DataItem>();
itemList.Add(new DataItem() { Id = 1, Name = "First" });
itemList.Add(new DataItem() { Id = 2, Name = "Second" });
itemList.Add(new DataItem() { Id = 3, Name = "Third" });
}

public event PropertyChangedEventHandler PropertyChanged;

private DataItem selectedItem;
public DataItem SelectedItem
{
get { return selectedItem; }
set
{
if (value != null && value.Id == 2)
value = itemList[0];
selectedItem = value;
NotifyPropertyChanged("SelectedItem");
}
}

private List<DataItem> itemList;
public List<DataItem> ItemList
{
get { return itemList; }
set { itemList = value; NotifyPropertyChanged("DataList"); }
}

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

}

xaml的相关位:
<StackPanel>
<StackPanel Orientation="Horizontal">
<ComboBox x:Name="comboBox" DisplayMemberPath="Name" Width="100" ItemsSource="{Binding ItemList}" SelectedItem="{Binding Path=SelectedItem, Mode=TwoWay}"/>
<Button Content="Set to First" Width="100" Click="Button_Click"/>
</StackPanel>
<StackPanel Orientation="Horizontal">
<TextBlock Text="Selected item: "/>
<TextBlock Text="{Binding SelectedItem.Id}"/>
<TextBlock Text=" - "/>
<TextBlock Text="{Binding SelectedItem.Name}"/>
</StackPanel>
</StackPanel>

当用户选择第二个项目时,我选择第一个项目的代码似乎正在工作。所选项目实际上设置为“第一个”,而 ComboBox 仍然显示“第二个”,就好像它被选中一样。

有没有办法强制 ComboBox 重绘或重新考虑它应该在视觉上标记为选中的内容?

我从上面提到的 Button_Click 方法执行此操作,它可以工作:
    private void Button_Click(object sender, RoutedEventArgs e)
{
var c = DataContext as DataContainer;
if (c != null)
{
c.SelectedItem = null;
c.SelectedItem = c.ItemList[0];
}
}

但是如果我像我需要的那样从 setter 中进行设置,那么设置为 null 然后我想要的值不起作用。

最佳答案

我可能已经为您找到了解决方案。通过执行以下操作,我能够得到我认为您要求的工作:

public DataItem SelectedItem
{
get { return _selectedItem; }
set
{
if (value != null && value.Id == 2)
{
value = itemList[0];
UpdateUI(); // Call this to force the UI to update.
}
_selectedItem = value;
NotifyPropertyChanged("SelectedItem");

}
}

private void UpdateUI()
{
ThreadPool.QueueUserWorkItem(
o =>
{
Thread.Sleep(1);

Deployment.Current.Dispatcher.BeginInvoke(()=>
{
_selectedItem = null;
NotifyPropertyChanged("SelectedItem");
_selectedItem = itemList[0];
NotifyPropertyChanged("SelectedItem");
});
});
}

我希望我能向你解释为什么这是有效的,但我只能猜测。基本上,它退出 UI 线程,然后稍后通过 Dispatcher.BeginInvoke() 调用重新进入。这似乎使 ComboBox 控件有时间从用户交互中更新自身,然后响应 Dispatcher 执行。

我发现的一个问题是,在多次执行线程代码后,Silverlight 似乎有点不稳定。增加 Thread.Sleep 时间似乎有帮助。我认为这个解决方案适用于大多数情况,不会成为问题。

关于Silverlight ComboBox 强制重新选择 SelectedItem,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5862424/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com