以编程方式更改选定的 ListBoxItem

发布于 2024-08-09 19:49:50 字数 334 浏览 5 评论 0原文

是否可以从 Windows Presentation Foundation 的代码隐藏中更改选定的 ListBoxItem

这确实是一个非常简单的任务,我有一个 NextPrevious 按钮,它们代表 ListBox 中的下一个和上一个项目。但是,myListBox.items 当然是我存储在ListBox 中的对象表示。

那么,如何获取 ListBoxItem 来设置 IsSelected 属性呢?

Is it possible to change the selected ListBoxItem from Code-Behind in Windows Presentation Foundation?

It's a quite simple task really, I have a Next and Previous button and they represent the next and previous item in the ListBox. But, myListBox.items are of course object representations of what I stored in the ListBox.

So, how would one fetch the ListBoxItem to set the IsSelected property?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

以为你会在 2024-08-16 19:49:50

在您的情况下,由于您正在执行“上一个”和“下一个”,因此可能更容易做的事情就是增加 SelectedIndex:

//Increment
if(myListBox.SelectedIndex < myListBox.Items.Count -1)
     myListBox.SelectedIndex++;

//Decrement
if(myListBox.SelectedIndex > 0)
     myListBox.SelectedIndex--;

如果您真的想要获取构成您在 ListBox 中抛出的对象的 ListBoxItem,你可以这样做:

ListBoxItem item = myListBox.ItemContainerGenerator.ContainerFromItem(objectIWantToSelect);
item.IsSelected = true;

Probably the easier thing to do in your case since you are doing Previous and Next is just increment the SelectedIndex:

//Increment
if(myListBox.SelectedIndex < myListBox.Items.Count -1)
     myListBox.SelectedIndex++;

//Decrement
if(myListBox.SelectedIndex > 0)
     myListBox.SelectedIndex--;

If you really want to get the ListBoxItem that makes up an object you've thrown in your ListBox, you can do:

ListBoxItem item = myListBox.ItemContainerGenerator.ContainerFromItem(objectIWantToSelect);
item.IsSelected = true;
榆西 2024-08-16 19:49:50

您有多种选择:

  • 使用 ListBox 控件的 SelectedItem 或 SelectedIndex 属性
  • 如果您有 ListBoxItem 而不是父 ListBox,则
  • ,使用 ItemsControl.ItemsControlFromItemContainer(listboxitem) 检索父 ListBox(并使用以前的属性)使用 ICollectionView 接口( CollectionViewSource.GetDefaultView)及其方法(MoveCurrentToNext、MoveCurrentToPrevious)

You have various options:

  • use the SelectedItem or SelectedIndex property of the ListBox control
  • if you have the ListBoxItem and not the parent ListBox, use ItemsControl.ItemsControlFromItemContainer(listboxitem) to retrieve the parent ListBox (and use the previous properties)
  • use the ICollectionView interfaces (CollectionViewSource.GetDefaultView) and its methods(MoveCurrentToNext, MoveCurrentToPrevious)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文