In the previous step, we created a WPF or Silverlight application and added the C1TileView control (C1TileView in Silverlight) to the project. To customize your application, complete the following steps:
XAML |
Copy Code
|
---|---|
<c1:C1TileView x:Name="C1TileView1" AllowDrop="True"></c1:C1TileView> |
XAML |
Copy Code
|
---|---|
<c1:C1TileView Name="C1TileView1" AllowDrop="True"> <c1:C1TileViewItem></c1:C1TileViewItem> <c1:C1TileViewItem></c1:C1TileViewItem> <c1:C1TileViewItem></c1:C1TileViewItem> </c1:C1TileView> |
XAML |
Copy Code
|
---|---|
<c1:C1TileView Name="C1TileView1" AllowDrop="True"> <c1:C1TileViewItem Background="Red" Header="Red"></c1:C1TileViewItem> <c1:C1TileViewItem Background="Blue" Header="Blue"></c1:C1TileViewItem> <c1:C1TileViewItem Background="Yellow" Header="Yellow"></c1:C1TileViewItem> </c1:C1TileView> |
In this step you added content to the C1TileView control. In the next step, we view some of the run-time interactions possible in the control.