TouchList - Sample projects
The sample project demonstrates:
- 3 ways of loading data into the TouchList. First is trough the DataSource property, second is setting the AllRowsCount property to a certain number and handling the GatheringItemEvent event, the third is manually create the Rows and add them into the AllRows collection of the TouchList.
- Using different ItemStyles, like ItemStyleImage and ItemStyleText to display cover images and description of a list of movies.
- Demonstrating data binding by a simple to-do checklist. Here you can press the checkbox, to check the item out, or click(tap) on the text of the selected row to edit the text of the item. After changes int the TouchList the object assigned to the DataSource property is changed automatically.
- Show the usage of the TouchListLite control, which is a touch-list with two images and two text fields. The items are added trough an array of specially formatted string assigned to the Item property. TouchListLite provides a simpler setting procedure, however has less flexibility then the TouchList.
Using the slide effect to achieve a menu functionality, when after selection in the main menu, a sub-menu slides in from the right, after selecting a menu item or pressing a Done or Cancel button (realized with ItemStyleLabel and ItemStyleRectangle) the menus are swapped back.
Sample is written in C# | Visual Basic