use*_*552 1 c# wpf xaml listview listviewitem
我有以下列表视图:
<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");
            }
        }
    }
}
我在列表视图标题处有一个复选框,并且每个列表视图项目都有一个复选框。
我试图检测何时选择列表视图项,然后一旦选择我想将其标记为选中。Listviewitem 事件 PreviewMouseLeftButtonDown 不起作用,当触发该 item.IsSelected 为 false 时,因为它是按下鼠标左键之前的预览。没有 MouseClick 事件,只有 MouseDoubleClick。
另外,单击 listviewitem 后,我想将所选项目标记为已选中(选中复选框)。
我怎样才能做到这一点?
绑定IsSelectedListViewItem Style中的属性:
<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();
    }
}