WPF Listview:检测listviewitem何时被选中,然后检查它

时间:2017-06-19 19:46:28

标签: c# wpf xaml listview listviewitem

我有以下listview:

<ListView Margin="10" Name="lvUsers" AlternationCount="2" SelectionMode="Extended">

<ListView.View>
    <GridView>
        <!-- Checkbox header -->
            <GridViewColumn>

                <GridViewColumn.Header>
                    <CheckBox Checked="CheckBox_Checked" Unchecked="CheckBox_Unchecked"/>
                </GridViewColumn.Header>

                <GridViewColumn.CellTemplate>
                    <DataTemplate>
                        <StackPanel Orientation="Horizontal">
                            <CheckBox IsChecked="{Binding IsChecked}" />
                        </StackPanel>
                    </DataTemplate>
                </GridViewColumn.CellTemplate>
            </GridViewColumn>

            <GridViewColumn Header="Name" Width="120" DisplayMemberBinding="{Binding Name}" />
        <GridViewColumn Header="Age" Width="50" DisplayMemberBinding="{Binding Age}" />
        <GridViewColumn Header="Mail" Width="150" DisplayMemberBinding="{Binding Mail}" />
    </GridView>
</ListView.View>

    <!-- SELECTED ITEM EVENT -->
    <ListView.ItemContainerStyle>
        <Style TargetType="ListViewItem">
            <EventSetter Event="PreviewMouseLeftButtonDown" Handler="ListViewItem_MouseLeftButtonDown" />
        </Style>
    </ListView.ItemContainerStyle>

</ListView>

和事件的代码隐藏:

    private void ListViewItem_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
    {
        var item = sender as ListViewItem;
        if (item != null && item.IsSelected)
        {
            //Do your stuff
        }

    }

这就是数据模型:

public class User : INotifyPropertyChanged
{
    private bool isChecked = false;
    private string name = string.Empty;
    private int age = 0;
    private string mail = string.Empty;

    public event PropertyChangedEventHandler PropertyChanged;

    private void NotifyPropertyChanged(String propertyName)
    {
        var handler = PropertyChanged;
        if (handler != null)
        {
            handler(this, new PropertyChangedEventArgs(propertyName));
        }
    }

    public bool IsChecked {
        get
        {
            return this.isChecked;
        }

        set
        {
            if (value != this.isChecked)
            {
                this.isChecked = value;
                NotifyPropertyChanged("IsSelected");
            }
        }
    }

    public string Name
    {
        get
        {
            return this.name;
        }

        set
        {
            if (value != this.name)
            {
                this.name = value;
                NotifyPropertyChanged("Name");
            }
        }
    }

    public int Age {
        get
        {
            return this.age;
        }

        set
        {
            if (value != this.age)
            {
                this.age = value;
                NotifyPropertyChanged("Age");
            }
        }
    }

    public string Mail {
        get
        {
            return this.mail;
        }

        set
        {
            if (value != this.mail)
            {
                this.mail = value;
                NotifyPropertyChanged("Mail");
            }
        }
    }
}

我在listview标题处有一个复选框,每个listview项目都有一个checbox。

我正在尝试检测何时选择了listviewitem,然后一旦选中我想将其标记为已选中。 Listviewitem事件PreviewMouseLeftButtonDown不起作用,当触发item.IsSelected为false时,因为它是鼠标左键按下之前的预览。没有MouseClick事件,只有MouseDoubleClick。

此外,一旦listviewitem点击,我想标记为选中(勾选复选框)所选项目。

我该怎么做?

1 个答案:

答案 0 :(得分:3)

在ListViewItem样式中绑定IsSelected属性:

<ListView.ItemContainerStyle>
    <Style TargetType="ListViewItem">
        <Setter Property="IsSelected" Value="{Binding IsChecked}"/>
    </Style>
</ListView.ItemContainerStyle>

请注意,为避免使用属性名称出现排版错误,您可以使用CallerMemberName属性,这会使编译器生成正确的属性名称:

using System.Runtime.CompilerServices;
...

private void NotifyPropertyChanged([CallerMemberName] string propertyName = null)
{
    PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}

public bool IsChecked
{
    get { return isChecked; }
    set
    {
        isChecked = value;
        NotifyPropertyChanged();
    }
}