WPF Datagrid 单击行以打开新页面

Che*_*hce 5 c# wpf xaml datagrid click

我的第一篇文章在这里!和新的编码!...

我在页面上的框架中有一个 WPF Datagrid。我想单击(最好单击)一行并使用存储在其中一列中的 ID 值导航到(打开)一个新页面。

使用 MouseDoubleClick 有时我可以双击行来打开一个页面。但有时它会抛出:“program.exe 中发生类型为‘System.NullReferenceException’的未处理异常附加信息:未将对象引用设置为对象的实例。”

在线(有关完整方法,请参阅下面的代码):

string ID = ((DataRowView)PersonDataGrid.SelectedItem).Row["PersonID"].ToString();
Run Code Online (Sandbox Code Playgroud)

XAML:

<DataGrid x:Name="PersonDataGrid" AutoGenerateColumns="False" 
     SelectionMode="Single" SelectionUnit ="FullRow"      
     MouseDoubleClick="PersonDataGrid_CellClicked"  >
  <DataGrid.Columns>
      <DataGridTextColumn Binding="{Binding Path=PersonID}" 
          ClipboardContentBinding="{x:Null}" Header="ID"  />
  </DataGrid.Columns>
  <DataGrid.CellStyle>
      <Style TargetType="DataGridCell" BasedOn="{StaticResource myDataGridCellStyle}">
           <EventSetter Event="DataGridCell.MouseLeftButtonDown" Handler="PersonDataGrid_CellClicked"/>
      </Style>
   </DataGrid.CellStyle>
</DataGrid>
Run Code Online (Sandbox Code Playgroud)

背后的代码:

private void PersonDataGrid_CellClicked(object sender, MouseButtonEventArgs e)

    {
        string ID = ((DataRowView)PersonDataGrid.SelectedItem).Row["PersonID"].ToString();

        SelectedPersonID = Int32.Parse(ID);

        this.NavigationService.Navigate(new PersonProfile());
    }
Run Code Online (Sandbox Code Playgroud)

有没有更好的方法来打开 PersonProfile 页面?有没有一种简单的方法可以通过单击一行来打开页面?

谢谢。

Sam*_*Dev 5

一个更好的方法是定义一个集合,Person该集合定义了DataGrid ItemSource一个Person包含所选项目的类型的属性DataGrid

 <DataGrid x:Name="PersonDataGrid" AutoGenerateColumns="False" 
            SelectionMode="Single" SelectionUnit ="FullRow"       
            MouseRightButtonUp="PersonDataGrid_CellClicked" 
              ItemsSource="{Binding Persons}" 
              SelectedItem="{Binding SelectedPerson}">
        <DataGrid.Columns>
            <DataGridTextColumn Binding="{Binding Path=PersonId}" Header="Id"  />
            <DataGridTextColumn Binding="{Binding Path=PersonName}" Header="Name"  />
        </DataGrid.Columns>
    </DataGrid>
Run Code Online (Sandbox Code Playgroud)

并且SelectedPersonPersons在此页面后面的代码中定义,如下所示:

 public partial class Page1 : Page,INotifyPropertyChanged
{
    private ObservableCollection<Person> _persons ;
    public ObservableCollection<Person> Persons
    {
        get
        {
            return _persons;
        }

        set
        {
            if (_persons == value)
            {
                return;
            }

            _persons = value;
             OnPropertyChanged();
        }
    }

    private Person _selectedPerson ;
    public Person SelectedPerson
    {
        get
        {
            return _selectedPerson;
        }

        set
        {
            if (_selectedPerson == value)
            {
                return;
            }

            _selectedPerson = value;
            OnPropertyChanged();
        }
    }
    public Page1()
    {
        InitializeComponent();
    }

    public event PropertyChangedEventHandler PropertyChanged;
    [NotifyPropertyChangedInvocator]
    protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
    {
        PropertyChangedEventHandler handler = PropertyChanged;
        if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
    }
}
public class Person
{
   public int PersonId { get; set; }
   public string PersonName { get; set; }
}
Run Code Online (Sandbox Code Playgroud)

INotifyPropertyChanged用于通知的属性进行任何更改UI。您可以使用该SelectedPerson属性或将其传递到新页面,MouseRightButtonUp例如,当您在以下位置收到事件时DataGrid

    private void PersonDataGrid_CellClicked(object sender, MouseButtonEventArgs e)
    {
        if (SelectedPerson == null)
            return;
        this.NavigationService.Navigate(new PersonProfile(SelectedPerson));
    }
Run Code Online (Sandbox Code Playgroud)

并且您可以更改PersonProfile页面以在其构造函数中接收一个人。