# Updating the Tile Content

## Content



The [C1SlideTile](/componentone/api/wpf/online-tiles/dotnet-framework-api/C1.WPF.Tile.4.6.2/C1.WPF.Tile.C1SlideTile.html) control will automatically alternate between content at regular intervals. You can adjust this interval using the static **C1TileService** class and the **UpdateInterval** property. For example:

```vbnet
C1TileService.UpdateInterval = TimeSpan.FromSeconds(20)
```

```csharp
C1TileService.UpdateInterval = TimeSpan.FromSeconds(20);
```

The higher the update interval value, the less frequent updates will become.

You can also programmatically update a tile by calling the **UpdateTile** method on each specific tile. For example, to update the tile when it is clicked use the following code:

```vbnet
Private Sub C1Tile_Click(sender As Object, e As System.EventArgs)
       Dim tile As C1Tile = TryCast(sender, C1Tile)
       If tile IsNot Nothing Then
              tile.UpdateTile()
       End If
End Sub
```

```csharp
private void C1Tile_Click(object sender, System.EventArgs e)
{
    C1Tile tile = sender as C1Tile;
    if(tile != null)
        tile.UpdateTile();
}
```

## See Also

[Binding to a Collection of Items](/componentone/docs/wpf/online-tiles/C1Tiles/BindingCollectionItems)