TouchList - Sample projects
TouchList advanced sample project
This sample project demonstrates:
- 3 ways of loading data into the TouchList. The first way is via DataSource property. The second is by setting AllRowsCount property to a certain number and then by handling GatheringItemEvent event. The third way is by manual creation of Rows and by adding them to AllRows collection of TouchList.
- Using different ItemStyles, like ItemStyleImage and ItemStyleText to display cover images and description in list of movies.
- Presentation of data binding with simple to-do checklist. Here you can press checkbox, to check item out, or click(tap) on text of the selected row to edit text of item. When changes in TouchList's object (which was assigned to its DataSource) property take place, the underlying data source is changed automatically.
- Show usage of TouchListLite control, which is a touch-list with at most two images and at most two text fields. The items are added through an array of specially formatted strings assigned to its Item property. TouchListLite is much more simple to set up. However, it also has less much less flexibility than TouchList.
The sample is written in:
- C#
