The following quick start guide is intended to get you up and running with the FlexGrid control. In this quick start, you'll start by creating a new WinUI application, add the FlexGrid control to it, and bind it with a datasource..
The following image displays the FlexGrid control showing the customer details, such as First Name, Last Name, Address, City etc.

| XAML |
コードのコピー
|
|---|---|
xmlns:c1 ="using:C1.WinUI.Grid" |
|
| XAML |
コードのコピー
|
|---|---|
<Grid> <c1:FlexGrid x:Name="flexGrid1" /> </Grid> |
|
| C# |
コードのコピー
|
|---|---|
flexGrid1.ItemsSource = Customer.GetCustomerList(100); |
|