如何检索列表框中所有选中项目的列表? Silverlight WP7.1

发布于 2024-12-11 15:42:57 字数 662 浏览 0 评论 0原文

这是我的列表框,如何在代码隐藏中检索已检查的项目?

    <ListBox Name="AppointmentResultsData" ItemsSource="{Binding Path=Attendees}" Height="400"  ScrollViewer.ManipulationMode="Control" Margin="24,0,0,0" >
      <ListBox.ItemTemplate>
        <DataTemplate>
          <StackPanel>
            <CheckBox Content="{Binding Path=DisplayName, Mode=TwoWay}" FontSize="{StaticResource PhoneFontSizeExtraLarge}" />
                      </StackPanel>
        </DataTemplate>
      </ListBox.ItemTemplate>
    </ListBox>
<Button Content="Skicka" Click="SendPhoto_Click" HorizontalAlignment="Center" />

This is my listbox, how can I retrieve the items that has been checked, in code-behind ?

    <ListBox Name="AppointmentResultsData" ItemsSource="{Binding Path=Attendees}" Height="400"  ScrollViewer.ManipulationMode="Control" Margin="24,0,0,0" >
      <ListBox.ItemTemplate>
        <DataTemplate>
          <StackPanel>
            <CheckBox Content="{Binding Path=DisplayName, Mode=TwoWay}" FontSize="{StaticResource PhoneFontSizeExtraLarge}" />
                      </StackPanel>
        </DataTemplate>
      </ListBox.ItemTemplate>
    </ListBox>
<Button Content="Skicka" Click="SendPhoto_Click" HorizontalAlignment="Center" />

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

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

发布评论

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

评论(2

梦情居士 2024-12-18 15:42:57

检查是否可以解决您的问题:

How to get Selected items in WPF CheckBox ListBox视图模型方法。

通常推荐使用

Check if that solves your problem:

How to get Selected items in WPF CheckBox ListBox

View model approach is usually recommended.

雨的味道风的声音 2024-12-18 15:42:57

列表框是 IEnumerable。我实际上还没有编译这个,但是类似:

var checked = AppointmentResultsData.ItemsSource.Where(i => i.IsChecked);

The listbox is IEnumerable. I haven't actually compiled this, but something like:

var checked = AppointmentResultsData.ItemsSource.Where(i => i.IsChecked);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文