gpt4 book ai didi

WPF listBox dataContextChanged

转载 作者:行者123 更新时间:2023-12-04 06:42:15 25 4
gpt4 key购买 nike

我在 userControl 中有一个列表框,每当我的 userControl 的数据上下文发生更改时,我想选择列表框中的第一项。 (列表框的 ItemsSource 绑定(bind)到 userControl dataContext :

<userControl>
<ListBox Name="listBox_Resources" ItemsSource="{Binding Path=Resources}" DataContextChanged="listBox_Resources_DataContextChanged">
</ListBox>
</userControl>

private void listBox_Resources_DataContextChanged(object sender, DependencyPropertyChangedEventArgs e)
{
MessageBox.Show(listBox_Resources.SelectedIndex.ToString() + " " + listBox_Resources.Items.Count.ToString());
listBox_Resources.SelectedIndex = 0;
}

似乎 dataContextChanged 在填充列表框项目之前被触发,因为我在事件处理程序中的消息框将返回我以前的列表框项目的计数。
请帮我找到解决方案。
谢谢

最佳答案

试试这个

private void listBox_Resources_DataContextChanged(object sender, DependencyPropertyChangedEventArgs e)
{
EventHandler eventHandler = null;
eventHandler = new EventHandler(delegate
{
if (listBox_Resources.ItemContainerGenerator.Status == GeneratorStatus.ContainersGenerated)
{
listBox_Resources.SelectedIndex = 0;
listBox_Resources.ItemContainerGenerator.StatusChanged -= eventHandler;
}
});
listBox_Resources.ItemContainerGenerator.StatusChanged += eventHandler;
}

如果你在最后一行设置断点
listBox_Resources.ItemContainerGenerator.StatusChanged += eventHandler;

并在调试器中观察 listBox_Resources.ItemContainerGenerator.Status 的值,它将读取“ContainersGenerated”。如果您随后在委托(delegate) EventHanler 中添加断点
if (listBox_Resources.ItemContainerGenerator.Status == GeneratorStatus.ContainersGenerated)

您应该第一次看到“c_listBox.ItemContainerGenerator.Status = GeneratingContainers”,然后当它再次出现时,它应该是 ContainersGenerated,然后我们可以设置 SelectedIndex。无论如何,这对我有用。

关于WPF listBox dataContextChanged,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4096426/

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