简体   繁体   English

WPF MVVM在DataGrid中选择/取消选择项目

[英]Wpf MVVM Selecting/unSelecting Item in DataGrid

I'm working on an MVVM project and I have this Code in one of the the views: 我正在研究MVVM项目,并且在以下一种视图中具有此代码:

<GroupBox   Header="Defaut"  BorderBrush="#FF4EA8DE" FontSize="16" Foreground="#FF436EFF"  >
                    <DataGrid Background="Transparent" FontSize="14" CanUserAddRows="False" CanUserDeleteRows="False" IsReadOnly="True" AutoGenerateColumns="False" Style="{x:Null}" 
                              ItemsSource="{Binding ErrorList}">
                        <DataGrid.Columns>
                            <DataGridTextColumn Width="0.5*" Header="{DynamicResource Numéro Cordon}" Binding="{Binding BeadName}"></DataGridTextColumn>
                            <DataGridTextColumn Width="0.5*" Header="{DynamicResource Indice Image}" Binding="{Binding IndiceImage}"></DataGridTextColumn>
                            <DataGridTextColumn Width="0.5*" Header="{DynamicResource Défaut}" Binding="{Binding DispDefault}"></DataGridTextColumn>
                            <DataGridTemplateColumn Header="{DynamicResource Criticité}" Width="0.5*">
                                <DataGridTemplateColumn.CellTemplate>
                                    <DataTemplate>
                                        <Label Content="{Binding IsError, Converter={StaticResource IsErrorToCriticityLevel}, Mode=OneWay}"></Label>
                                    </DataTemplate>
                                </DataGridTemplateColumn.CellTemplate>
                            </DataGridTemplateColumn>

                        </DataGrid.Columns>

                        <DataGrid.CellStyle>
                            <Style TargetType="DataGridCell">
                                <Setter Property="CmdB:CommandBehavior.Event" Value="MouseDown" />
                                <Setter Property="CmdB:CommandBehavior.Command" Value="{Binding DataContext.RobotErrorSelectionChangedCommand, 
                                                                                                RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type controls:MetroWindow}}}"/>
                                <Setter Property="CmdB:CommandBehavior.CommandParameter" Value="{Binding Path=SelectedItem, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=DataGrid}}"/>
                                <Style.Triggers>
                                    <Trigger Property="IsSelected" Value="true">
                                        <Setter Property="BorderBrush" Value="#FF6593CF" />
                                        <Setter Property="Background" Value="#FF6593CF" />
                                    </Trigger>
                                </Style.Triggers>
                            </Style>
                        </DataGrid.CellStyle>

                        <i:Interaction.Triggers>
                            <i:EventTrigger EventName="SelectionChanged">
                                <i:InvokeCommandAction Command="{Binding RobotErrorSelectionChangedCommand}" CommandParameter="{Binding Path=SelectedItem, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=DataGrid}}" />
                            </i:EventTrigger>
                        </i:Interaction.Triggers>
                    </DataGrid>
                </GroupBox>

What I want to do is to be able to unselect the selected item in this list, however I can't find how to access it. 我想要做的是能够取消选择此列表中的选定项目,但是我找不到如何访问它的方法。

Here is the code in the ViewModel related to this list: 这是ViewModel中与此列表相关的代码:

ObservableCollection<Erreur> _ErrorList;
    public ObservableCollection<Erreur> ErrorList
    {
        get { return _ErrorList; }
        set { _ErrorList = value; RaisePropertyChanged("ErrorList");}
    }


private RelayCommand<Erreur> _RobotErrorSelectionChangedCommand;
    public RelayCommand<Erreur> RobotErrorSelectionChangedCommand
    {
        get
        {
            return _RobotErrorSelectionChangedCommand
                ?? (_RobotErrorSelectionChangedCommand = new RelayCommand<Erreur>(
                (Erreur err) =>
                {
                    if (err != null)
                    {
                        viewservice.OpenDialog(new ErreurImageViewModel(err), ServiceLocator.Current.GetInstance<MainViewModel>());

                    }     
                }));
        }
    }

Thank you for any help or advice. 感谢您的帮助或建议。

You can bind the SelectedItem property in the Datagrid to a property in the VM, and to clear the current selection you can just set the property to: null . 您可以将Datagrid中的SelectedItem属性绑定到VM中的属性,并且要清除当前选择,只需将属性设置为: null That way you can deselect the SelectedItem through the code whenever you want. 这样,您可以随时通过代码取消选择SelectedItem

You would bind it in your View like this: 您可以这样将其绑定到您的视图中:

<DataGrid ItemsSource="{Binding ErrorList}" SelectedItem="{Binding SelectedError}" ...>

Then in your ViewModel you would add: 然后在您的ViewModel中添加:

    private Erreur _selectedError = null;

    public Erreur SelectedError
    {
        get => _selectedError;
        set
        {
            if (_selectedError == value) return;
            _selectedError = value;
            RaisePropertyChanged(nameof(SelectedError));
        }
    }

Whenever you want to clear the selection you can just do: 每当您要清除选择时,都可以执行以下操作:

SelectedError = null;

And if you want to select a specific instance from the code you can do: 如果要从代码中选择特定实例,则可以执行以下操作:

SelectedError = myInstanceOfError;

Bind the SelectedError property to the SelectedItem Attribute in your XAML. SelectedError属性绑定到XAML中的SelectedItem属性。

XAML: XAML:

<DataGrid Background="Transparent" FontSize="14" CanUserAddRows="False" CanUserDeleteRows="False" IsReadOnly="True" AutoGenerateColumns="False" Style="{x:Null}" ItemsSource="{Binding ErrorList}" SelectedItem="{Binding SelectedError}">

C# Property: C#属性:

private Erreur _SelectedError;
public Erreur SelectedError
{
    get { return _SelectedError; }
    set {
            if(_SelectedError != value)
            {
                 _SelectedErrorList = value; 
                 RaisePropertyChanged("SelectedError");
            }
        }
}

Thank you, both answers are correct with a little modification, I added the : 谢谢,两个答案都是正确的,但做了一些修改,我添加了:

SelectedItem="{Binding SelectedError}"  in the XAML code.

and I had to comment this part to disable the command from working : 我不得不注释这部分以禁用该命令:

<i:Interaction.Triggers>
    <i:EventTrigger EventName="SelectionChanged">
        <i:InvokeCommandAction Command="{Binding RobotErrorSelectionChangedCommand}" CommandParameter="{Binding Path=SelectedItem, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=DataGrid}}" />
    </i:EventTrigger>
</i:Interaction.Triggers>

now the SelectedError get the Selected Item.Thanx 现在SelectedError获得Selected Item.Thanx

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM