Resources

https://docs.microsoft.com/en-us/windows/communitytoolkit/controls/datagrid_guidance/datagrid_basics

Set the project up to support the DataGrid control

Add the package

In Solution Explorer panel, right click on your project name and select Manage NuGet Packages. Search for “Microsoft.Toolkit.UWP.UI.Controls.DataGrid”.

Install the Microsoft.Toolkit.Uwp.UI.Controls.DataGrid nuget package.

Add the reference to the top of your xaml page
xmlns:controls="using:Microsoft.Toolkit.Uwp.UI.Controls"
xmlns:prim="using:Microsoft.Toolkit.Uwp.UI.Controls.Primitives"

Add the DataGrid

      <!-- DATA GRID -->
      <controls:DataGrid Canvas.Left="10" Canvas.Top="530" Width="780" Height="730" x:Name="DataGrid1"
          AutoGenerateColumns="True"
                
      />