The following quick start guide is intended to get you up and running with the C1TileListBox control. In this quick start you'll start in Visual Studio and create a new project, add C1TileListBox to your application, and customize the appearance and behavior of the control.
In this step, you'll create a WPF or Silverlight application in Visual Studio using TileListBox for WPF and Silverlight.
To set up your project, complete the following steps:
XAML Copy Code <c1:C1TileListBox x:Name="tileListBox" ItemsSource="{Binding}" ItemWidth="130" ItemHeight="130"></c1:C1TileListBox>
This gives the control a name, sets the ItemsSource property (you'll customize this in code in a later step), and sets the size of the control.
XAML Copy Code <c1:C1TileListBox x:Name="tileListBox" ItemsSource="{Binding}" ItemWidth="130" ItemHeight="130"> <c1:C1TileListBox.PreviewItemTemplate> <DataTemplate> <Grid Background="Gray" /> </DataTemplate> </c1:C1TileListBox.PreviewItemTemplate> <c1:C1TileListBox.ItemTemplate> <DataTemplate> <Grid Background="LightBlue"> <Image Source="{Binding Thumbnail}" Stretch="UniformToFill" /> <TextBlock Text="{Binding Title}" Margin="4 0 0 4" VerticalAlignment="Bottom" /> </Grid> </DataTemplate> </c1:C1TileListBox.ItemTemplate> </c1:C1TileListBox>This markup adds data templates for the C1TileListBox control's content. You'll complete binding the control in code in the next step.
In the last step, you added the C1TileListBox control to the application. In this step, you will add code to bind the control to data.
Complete the following steps to add data to the control:
Visual Basic Copy Code Imports System Imports System.Collections.Generic Imports System.Diagnostics Imports System.Linq Imports System.Net Imports System.Windows; Imports System.Windows.Controls; Imports System.Xml.Linq; Imports C1.WPF OR Imports System Imports System.Collections.Generic Imports System.IO Imports System.Linq Imports System.Xml.Linq Imports System.Net Imports C1.Silverlight
C# Copy Code using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Net; using System.Windows; using System.Windows.Controls; using System.Xml.Linq; using C1.WPF; OR using System; using System.Collections.Generic; using System.Linq; using System.Net; using C1.Silverlight;
Visual Basic Copy Code DataContext = Enumerable.Range(0, 100).[Select](Function(i) New Item() With {.Title = i.ToString()})
C# Copy CodeDataContext = Enumerable.Range(0, 100).Select(i => new Item { Title = i.ToString() });
Visual Basic Copy Code#Region "** public properties" Public Property Orientation() As Orientation Get Return tileListBox.Orientation End Get Set(value As Orientation) tileListBox.Orientation = value End Set End Property Public Property ItemWidth() As Double Get Return tileListBox.ItemWidth End Get Set(value As Double) tileListBox.ItemWidth = value End Set End Property Public Property ItemHeight() As Double Get Return tileListBox.ItemHeight End Get Set(value As Double) tileListBox.ItemHeight = value End Set End Property Public Property ZoomMode() As ZoomMode Get Return tileListBox.ZoomMode End Get Set(value As ZoomMode) tileListBox.ZoomMode = value End Set End Property #End Region
C# Copy Code #region ** public properties public Orientation Orientation { get { return tileListBox.Orientation; } set { tileListBox.Orientation = value; } } public double ItemWidth { get { return tileListBox.ItemWidth; } set { tileListBox.ItemWidth = value; } } public double ItemHeight { get { return tileListBox.ItemHeight; } set { tileListBox.ItemHeight = value; } } public ZoomMode ZoomMode { get { return tileListBox.ZoomMode; } set { tileListBox.ZoomMode = value; } } #endregionThe code above binds the C1TileListBox to a list of numbers.
Visual Basic Copy Code Public Class Item Public Property Title() As String Get Return m_Title End Get Set(value As String) m_Title = Value End Set End Property Private m_Title As String Public Property Thumbnail() As String Get Return m_Thumbnail End Get Set(value As String) m_Thumbnail = Value End Set End Property Private m_Thumbnail As String End Class
C# Copy Code public class Item { public string Title { get; set; } public string Thumbnail { get; set; } }
You have successfully added data to C1TileTileListBox. In Step 3, you'll examine the TileListBox for WPF and Silverlight features.
Now that you've created a WPF or Silverlight application and customized the application's appearance and behavior, the only thing left to do is run your application.
To run your application and observe TileListBox for WPF and Silverlight's run-time behavior, complete the following steps:
Congratulations!
You've completed the TileListBox for WPF and Silverlight quick start and created an application using the C1TileListBox control and viewed some of the run-time capabilities of your application.