ComponentOne TileView for UWP
TileView for UWP Task-Based Help / Adding Items to C1TileView
In This Topic
    Adding Items to C1TileView
    In This Topic

    In this topic you'll add C1TileViewItems to the C1TileView control. Note that this topic assumes you have already added an empty C1TileView control to your application.

    Edit the <TileView:C1TileView x:Name="C1TileView1" /> tag to add several C1TileViewItems. The XAML will appear similar to the following:

    Markup
    Copy Code
    <TileView:C1TileView Name="C1TileView1">
        <TileView:C1TileViewItem Background="Red" Header="Red"></TileView:C1TileViewItem>
        <TileView:C1TileViewItem Background="Orange" Header="Orange"></TileView:C1TileViewItem>
        <TileView:C1TileViewItem Background="Yellow" Header="Yellow"></TileView:C1TileViewItem>
        <TileView:C1TileViewItem Background="Green" Header="Green"></TileView:C1TileViewItem>
        <TileView:C1TileViewItem Background="Blue" Header="Blue"></TileView:C1TileViewItem>
        <TileView:C1TileViewItem Background="Purple" Header="Purple"></TileView:C1TileViewItem>
    </TileView:C1TileView>
    

    You've successfully added six C1TileViewItems to the C1TileView control.

    See Also