1

我有一个 ListView,它显示员工列表,并且每个 SelectionChanged 事件在一组文本框中显示有关每个员工的不同信息。

<ListView ItemsSource="{Binding Employees}" x:Name="lvEmployeeList" Grid.Row="1" Grid.Column="1" Width="385" SelectedIndex="0" Margin="1,1,1,1" >
                <i:Interaction.Triggers>
                    <i:EventTrigger EventName="SelectionChanged">
                        <i:InvokeCommandAction Command="{Binding ProcessCommand}" CommandParameter="{Binding ElementName=lvEmployeeList, Path=SelectedItem.EmployeeID}" ></i:InvokeCommandAction>
                    </i:EventTrigger>
                </i:Interaction.Triggers>

哪个工作正常。然后我想了解 DataTemplate 所以这次我使用了一个 ListBox 并在 Listbox 中再次显示信息(只是一个简单的版本,它在列表框的每一行中显示几个字段)问题是当 SelectionChanged 发生时我得到一个运行时错误为

对象引用未设置为对象的实例

    <ListBox x:Name="lstEmployees" ItemsSource="{Binding Employees}" >
        <ListBox.ItemTemplate>
            <DataTemplate>
                <StackPanel>
                    <TextBlock Text="{Binding EmployeeID}" />
                    <TextBlock Text="{Binding BackgroundID}" />
                    <TextBlock Text="{Binding EmployeeName}" />
                </StackPanel>                        
            </DataTemplate>
        </ListBox.ItemTemplate>
        <i:Interaction.Triggers>
            <i:EventTrigger EventName="SelectionChanged">
                <i:InvokeCommandAction Command="{Binding ProcessCommand}" CommandParameter="{Binding ElementName=lstEmployee, Path=SelectedItem.EmployeeID}" />
            </i:EventTrigger>
        </i:Interaction.Triggers>
    </ListBox>

基本上在 ViewModel 我有一个 linq 语句:

PropertyEmployee = Employees.FirstOrDefault(item => item.EmployeeID == param.ToString());  

你能告诉我是什么导致了这个错误吗?在 ListView 中很好,但在 ListBox 中我得到了空对象。

4

1 回答 1

0

我能够通过在我的 viewModel 中添加一个选定的属性来克服这个问题

public Employee SelectedEmployee { get; set; }

OneWayToSource然后在模式中将 SelectedItem 绑定到该属性

<ListBox x:Name="lstEmployees" ItemsSource="{Binding Employees}" SelectionMode="Single" SelectedItem="{Binding Path=SelectedEmployee, Mode=OneWayToSource}">

ProcessCommand带参数

<i:InvokeCommandAction Command="{Binding ProcessCommand}"/>

最后,在ProcessCommand执行内部,检索你的Employeeid 并从那里做任何事情......

var id = SelectedEmployee.EmployeeId;

// Do whatever you want

希望这可以帮助

于 2013-09-19T18:41:34.087 回答