我正在开发 WPF 应用程序。我在其中按以下方式将
CheckBoxes
添加到ListBox
。
foreach (User ls in lst)
{
AddContacts(ls, lstContactList);
}
private void AddContacts(User UserData, ListBox lstbox)
{
try
{
var txtMsgConversation = new CheckBox()
{
Padding = new Thickness(1),
IsEnabled = true,
//IsReadOnly = true,
Background = Brushes.Transparent,
Foreground = Brushes.White,
Width = 180,
Height = 30,
VerticalAlignment = VerticalAlignment.Top,
VerticalContentAlignment = VerticalAlignment.Top,
Content = UserData.Name, //+ "\n" + UserData.ContactNo,
Margin = new Thickness(10, 10, 10, 10)
};
var SpConversation = new StackPanel() { Orientation = Orientation.Horizontal };
SpConversation.Children.Add(txtMsgConversation);
var item = new ListBoxItem()
{
Content = SpConversation,
Uid = UserData.Id.ToString(CultureInfo.InvariantCulture),
Background = Brushes.Black,
Foreground = Brushes.White,
BorderThickness = new Thickness(1),
BorderBrush = Brushes.Gray
};
item.Tag = UserData;
lstbox.Items.Add(item);
}
catch (Exception ex)
{
//Need to log Exception
}
}
现在我需要从
ListBox
那里拿到托运的物品。我如何在这里进行,我尝试了下面的代码,它返回 null,
CheckBox chkBox = lstContactList.SelectedItem as CheckBox;
想法?
在listbox中创建动态多个item的方式不是在codebehind,而是为item创建一个模板,然后绑定到一个item列表中。
例子
说我有一堆段落
List<Passage> Passages { get; set; }
:
public class Passage
{
public string Name { get; set; }
public bool IsSelected { get; set; }
}
在我的 xaml 中,我创建了一个模板并绑定到它
<ListBox ItemsSource="{Binding Passages}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<CheckBox IsChecked="{Binding IsSelected, Mode=TwoWay}" />
<TextBlock Text="{Binding Path=Name, StringFormat=Passage: {0}}"
Foreground="Blue" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
我的四个段落“Alpha”、“Beta”、“Gamma”和“I-25”的结果如下所示:
然后如果我想要选中的item,比如上面最近勾选的
Beta
,我就把我选中的List枚举出来。
var selecteds = Passages.Where(ps => ps.IsSelected == true);
需要在一个ListBox中列出不同类型的对象?从绑定到复合集合或
ObservableCollection<T>
?
在这里查看我的答案:
感谢您的回复,它帮助我找到了问题的答案。我要添加的唯一细节是使用“Window.DataContext”将结果绑定到列表。
<Window.DataContext>
<Binding RelativeSource="{RelativeSource Self}"/>
</Window.DataContext>