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"
                
      />
USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.

Comments

Your email address will not be published. Required fields are marked *