In this step you will bind the products data table to the TileControl and fill the dataset.
Setting these two properties binds the products data table in the c1NwindDataSet to the TileControl.
The TileControl is bound to the c1NwindDataSet, but is not automatically filled in. To fill the dataset, double click on the form and call the data adapter method in the Form1_Load like the following:
Visual Basic Copy CodeoleDataAdapter1.Fill(c1NWindDataSet)
C# Copy CodeoleDbDataAdapter1.Fill(c1NWindDataSet);
When you run the project you will notice there is a tile for each product name in the product table, but the product name does not appear on each tile. In this case we will need to map the ProductName and Text to the C1TileControl.