### Install Xceed DataGrid for WPF using dotnet CLI Source: https://github.com/xceedsoftware/wpf-datagrid-samples/blob/main/README.md Instructions to add the Xceed DataGrid for WPF package to your project using the .NET command-line interface. This is an alternative to using the NuGet Package Manager GUI. ```Shell dotnet add package Xceed.Products.Wpf.DataGrid.Full ``` -------------------------------- ### Clone and Navigate Repository Source: https://github.com/xceedsoftware/wpf-datagrid-samples/blob/main/README.md Instructions to clone the Xceed DataGrid for WPF samples repository and navigate into its directory using Git. ```bash git clone https://github.com/your-repo/xceed-datagrid-wpf-examples.git cd xceed-datagrid-wpf-examples ``` -------------------------------- ### Add Xceed DataGrid Control to WPF XAML Source: https://github.com/xceedsoftware/wpf-datagrid-samples/blob/main/README.md Demonstrates how to include the Xceed DataGrid control in a WPF XAML file. This involves adding the necessary Xceed namespace and then declaring the DataGridControl element, typically binding its ItemsSource to a data source. ```XAML xmlns:xcdg="http://schemas.xceed.com/wpf/xaml/datagrid" ``` -------------------------------- ### License Xceed DataGrid for WPF using C# LicenseKey property Source: https://github.com/xceedsoftware/wpf-datagrid-samples/blob/main/README.md Shows how to apply a license key to the Xceed DataGrid for WPF by setting the static LicenseKey property in your C# application's startup code, typically within the main window's constructor or application's OnStartup method. Ensure the key is set before any DataGrid control is instantiated. ```C# using System.Windows; public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); Xceed.Wpf.DataGrid.Licenser.LicenseKey = "Your-Key-Here"; } } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.