本文介绍了如何从C#中的列表框中获取已检查值的列表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 限时删除!! 我有一个动态列表框:I have a dynamic listBox:<ListBox Margin="182,150,201,249" Name="myListCode"> <ListBox.ItemTemplate> <DataTemplate> <StackPanel> <CheckBox Content="{Binding}" IsChecked="True" /> </StackPanel> </DataTemplate> </ListBox.ItemTemplate></ListBox> 我想得到所选的值。 有任何帮助吗? 提前致谢, 我尝试过:I want to get just the selected values.Any help please?Thanks in advance,What I have tried:myListCode.SelectedItem但我得到空。 but I get null.myListCode.SelectedItems但我得到0.推荐答案不是WPF的人,但我发现这个讨论可能会帮助你开始:从列表中的复选框中获取所选项目 - C#WPF - 堆栈溢出 [ ^ ]Not a WPF guy, but I found this discussion that may help you get started: Get selected items from checkbox in a list - C# WPF - Stack Overflow[^] 这篇关于如何从C#中的列表框中获取已检查值的列表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 1403页,肝出来的.. 09-07 00:16