我尝试使用ListBox选择条目,然后显示属于此选定条目的图片。但刚开始时我遇到了第一个问题:使用绑定填充ListBox是有效的,但是如果我在运行程序中点击一行,它就不会选择该行。我只能看到突出显示的悬停效果,但不能选择一条线。任何想法我的错误是什么?
这是我的XAML:
<ListBox x:Name="entrySelection" ItemsSource="{Binding Path=entryItems}" HorizontalAlignment="Left" Height="335" Margin="428,349,0,0" VerticalAlignment="Top" Width="540" FontSize="24"/>
在MainWindow.xaml.cs中,我在列表框中填入条目:
private void fillEntrySelectionListBox()
{
//Fill listBox with entries for active user
DataContext = this;
entryItems = new ObservableCollection<ComboBoxItem>();
foreach (HistoryEntry h in activeUser.History)
{
var cbItem = new ComboBoxItem();
cbItem.Content = h.toString();
entryItems.Add(cbItem);
}
this.entrySelection.ItemsSource = entryItems;
labelEntrySelection.Text = "Einträge für: " + activeUser.Id;
//show image matching the selected entry
if (activeUser.History != null)
{
int index = entrySelection.SelectedIndex;
if (index != -1 && index < activeUser.History.Count)
{
this.entryImage.Source = activeUser.History[index].Image;
}
}
}
所以我可以看到我的ListBox正确填充,但没有选择任何东西 - 所以我不能继续加载与所选条目匹配的图片。 我对编程还很陌生,所以任何帮助都会很棒:)
编辑:如果有人稍后看一下这个帖子:这里 - 非常明显 - 解决方案
XAML现在看起来像这样
<ListBox x:Name="entrySelection" ItemsSource="{Binding Path=entryItems}" HorizontalAlignment="Left" Height="335" Margin="428,349,0,0" VerticalAlignment="Top" Width="540" FontFamily="Siemens sans" FontSize="24">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Text}"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
填写代码:
//Fill listbox with entries for selected user
DataContext = this;
entryItems = new ObservableCollection<DataItem>();
foreach (HistoryEntry h in selectedUser.History)
{
var lbItem = new DataItem(h.toString());
entryItems.Add(lbItem);
}
this.entrySelection.ItemsSource = entryItems;
labelEntrySelection.Text = "Einträge für: " + selectedUser.Id;
新的Class DataItem:
class DataItem
{
private String text;
public DataItem(String s)
{
text = s;
}
public String Text
{
get
{
return text;
}
}
}
答案 0 :(得分:0)
您正在使用与ListBox无关的ComboBoxItem填充它,并且根据定义也是错误的。
您需要将ObservableCollection填充数据项。
意思是,创建一个包含要存储的数据的类,ListBox将自动为每个数据项生成一个ListBoxItem。