Auto-scrolling ListBox for Windows Phone
pavan.pareta
(Talk | contribs) (Pavan.pareta -) |
hamishwillee
(Talk | contribs) m (Hamishwillee - Addition to article of: Category:Windows Phone 7.5) |
||
| (14 intermediate revisions by 5 users not shown) | |||
| Line 1: | Line 1: | ||
| − | + | [[Category:Windows Phone]][[Category:UI]][[Category:Silverlight]][[Category:Code Examples]] | |
| − | {{Abstract|This | + | {{Abstract|This code example explains how to create a [http://msdn.microsoft.com/en-us/library/ms611062(v=vs.95).aspx ListBox] which automatically scrolls through and highlights its items.}} |
{{ArticleMetaData <!-- v1.2 --> | {{ArticleMetaData <!-- v1.2 --> | ||
| − | |sourcecode= [[ | + | |sourcecode= [[Media:WmDevAutoScrollListBox.zip]] |
|installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | ||
|devices= Nokia Lumia 710,800 | |devices= Nokia Lumia 710,800 | ||
| Line 9: | Line 9: | ||
|platform= Windows Phone 7.5 (mango) | |platform= Windows Phone 7.5 (mango) | ||
|devicecompatability= <!-- Compatible devices e.g.: All* (must have internal GPS) --> | |devicecompatability= <!-- Compatible devices e.g.: All* (must have internal GPS) --> | ||
| − | |dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> | + | |dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> |
| − | |signing=<!-- Signing requirements - empty or one of: Self-Signed, DevCert, Manufacturer --> | + | |signing= <!-- Signing requirements - empty or one of: Self-Signed, DevCert, Manufacturer --> |
|capabilities= <!-- Capabilities required by the article/code example (e.g. Location, NetworkServices. --> | |capabilities= <!-- Capabilities required by the article/code example (e.g. Location, NetworkServices. --> | ||
|keywords= <!-- APIs, classes and methods (e.g. QSystemScreenSaver, QList, CBase --> | |keywords= <!-- APIs, classes and methods (e.g. QSystemScreenSaver, QList, CBase --> | ||
|language= <!-- Language category code for non-English topics - e.g. Lang-Chinese --> | |language= <!-- Language category code for non-English topics - e.g. Lang-Chinese --> | ||
|translated-by= <!-- [[User:XXXX]] --> | |translated-by= <!-- [[User:XXXX]] --> | ||
| − | |translated-from-title= <!-- Title only --> | + | |translated-from-title= <!-- Title only --> |
|translated-from-id= <!-- Id of translated revision --> | |translated-from-id= <!-- Id of translated revision --> | ||
| − | |review-by=<!-- After re-review: [[User:username]] --> | + | |review-by= <!-- After re-review: [[User:username]] --> |
|review-timestamp= <!-- After re-review: YYYYMMDD --> | |review-timestamp= <!-- After re-review: YYYYMMDD --> | ||
|update-by= <!-- After significant update: [[User:username]]--> | |update-by= <!-- After significant update: [[User:username]]--> | ||
|update-timestamp= <!-- After significant update: YYYYMMDD --> | |update-timestamp= <!-- After significant update: YYYYMMDD --> | ||
| − | |creationdate= | + | |creationdate= 20121002 |
| − | |author= | + | |author= [[User:Pavan.pareta]] |
}} | }} | ||
== Introduction == | == Introduction == | ||
| − | + | Auto scrolling lists are not only useful for displaying informations that is regularly updated, but also where some meaningful information may be displayed. It can be a pattern, trend or some historical information (for example, stock market updates, data feeds, flight information display systems, social network status/data update etc). | |
| − | + | ||
| − | + | The auto-scrolling {{Icode|ListBox}} illustrated in this article is displayed in the animated gif image below. The box navigates to each item in turn (ensuring it is visible) using [http://msdn.microsoft.com/en-us/library/system.windows.controls.listbox.scrollintoview(v=vs.95).aspx ListBox:ScrollIntoView()] and highlights the item by setting it as ''Selected''. At the end of the list, the selection returns to the first item and repeats the iteration. A [http://msdn.microsoft.com/en-us/library/system.windows.threading.dispatchertimer.aspx DispatcherTimer] is used to control the rate of movement through the items. | |
| − | + | [[File:Wmdev-0000autoscroll.gif|frame|none|Auto scrolling list]] | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | == | + | == Architectural overview== |
| − | + | The main components of this solution are listed below: | |
| + | #Custom List Control (XAML) - definition of the List and appearance of its list items in XAML | ||
| + | #Sample List Data - C# class defining the ''format'' of data to be displayed in the {{Icode|ListBox}} along with instances of the class that are bound to the {{Icode|ListBox}} | ||
| + | #Dispatcher Timer API - C# code for iterating through the list items. | ||
| − | + | These are discussed in the following sections | |
| + | |||
| + | == Custom List Box definition (in XAML) == | ||
| + | |||
| + | The XAML definition for the {{Icode|ListBox}} is given below: | ||
| − | |||
<code xml> | <code xml> | ||
<!--ContentPanel - place additional content here--> | <!--ContentPanel - place additional content here--> | ||
| Line 65: | Line 67: | ||
</code> | </code> | ||
| − | === Sample Data | + | The {{Icode|ListBox}} has the name {{icode|lstSample}}, and is defined in terms of a [http://msdn.microsoft.com/en-us/library/system.windows.datatemplate(v=vs.95).aspx DataTemplate]. The template describes the appearance of each item and includes named bindings for each element of those items. In this example, a list component item will contain an image, user name and group as shown below: |
| − | + | ||
| − | + | [[File:List Item Structure.png|frame|none|List item template]] | |
| + | |||
| + | == Sample List Data == | ||
| + | The sample list data is defined in the C# code behind, as shown below. Note that as required in the XAML binding definition above the properties are named {{Icode|Name}}, {{Icode|Group}}, and {{Icode|ImagePath}}, | ||
| + | |||
<code csharp> | <code csharp> | ||
public class SampleData | public class SampleData | ||
| Line 77: | Line 83: | ||
</code> | </code> | ||
| − | + | We then create instances of this data class for the list items and set them as the source for the {{Icode|ListBox}}. | |
| − | + | ||
| − | + | ||
<code csharp> | <code csharp> | ||
| + | //SimpleItems is a list containing items of class SampleData | ||
SimpleItems = new List<SampleData>() | SimpleItems = new List<SampleData>() | ||
{ | { | ||
| Line 88: | Line 93: | ||
}; | }; | ||
| − | // | + | //Bind the list data to the ListBox (note that lstSample is the name of the list defined in the XAML) |
this.lstSample.ItemsSource = SimpleItems; | this.lstSample.ItemsSource = SimpleItems; | ||
</code> | </code> | ||
| − | + | == Dispatcher Timer API == | |
| − | Finally we will call the [http://msdn.microsoft.com/en-us/library/system.windows.threading.dispatchertimer.aspx DispatcherTimer] API to | + | Finally we will call the [http://msdn.microsoft.com/en-us/library/system.windows.threading.dispatchertimer.aspx DispatcherTimer] API to iterate through the items. |
| − | + | ||
<code csharp> | <code csharp> | ||
| Line 103: | Line 107: | ||
</code> | </code> | ||
| − | + | When the timer is triggerd, we call the {{Icode|timer_Tick}} event handler, which scrolls to the current index and marks it as selected, and then updates the index. After the last item is highlighted the index is reset to the first item. | |
| − | + | ||
<code csharp> | <code csharp> | ||
void timer_Tick(object sender, EventArgs e) | void timer_Tick(object sender, EventArgs e) | ||
| Line 124: | Line 127: | ||
</code> | </code> | ||
| − | + | Run it using F5 key. | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | == References == | |
# [http://msdn.microsoft.com/en-us/library/system.windows.controls.listbox.scrollintoview(v=vs.95).aspx ScrollIntoView()] | # [http://msdn.microsoft.com/en-us/library/system.windows.controls.listbox.scrollintoview(v=vs.95).aspx ScrollIntoView()] | ||
# [http://msdn.microsoft.com/en-us/library/6sh2ey19(v=vs.95).aspx List<T> Class] | # [http://msdn.microsoft.com/en-us/library/6sh2ey19(v=vs.95).aspx List<T> Class] | ||
# [http://msdn.microsoft.com/en-us/library/system.windows.threading.dispatchertimer.aspx DispatcherTimer Class] | # [http://msdn.microsoft.com/en-us/library/system.windows.threading.dispatchertimer.aspx DispatcherTimer Class] | ||
| − | # [ | + | # [[Application Bar for Windows Phone]] |
| Line 140: | Line 139: | ||
== Sample Code== | == Sample Code== | ||
| − | You can download sample code from [[ | + | You can download sample code from [[Media:WmDevAutoScrollListBox.zip]].[[Category:Windows Phone 7.5]] |
Revision as of 08:20, 30 November 2012
This code example explains how to create a ListBox which automatically scrolls through and highlights its items.
Article Metadata
Code Example
Tested with
Compatibility
Article
Contents |
Introduction
Auto scrolling lists are not only useful for displaying informations that is regularly updated, but also where some meaningful information may be displayed. It can be a pattern, trend or some historical information (for example, stock market updates, data feeds, flight information display systems, social network status/data update etc).
The auto-scrolling ListBox illustrated in this article is displayed in the animated gif image below. The box navigates to each item in turn (ensuring it is visible) using ListBox:ScrollIntoView() and highlights the item by setting it as Selected. At the end of the list, the selection returns to the first item and repeats the iteration. A DispatcherTimer is used to control the rate of movement through the items.
Architectural overview
The main components of this solution are listed below:
- Custom List Control (XAML) - definition of the List and appearance of its list items in XAML
- Sample List Data - C# class defining the format of data to be displayed in the ListBox along with instances of the class that are bound to the ListBox
- Dispatcher Timer API - C# code for iterating through the list items.
These are discussed in the following sections
Custom List Box definition (in XAML)
The XAML definition for the ListBox is given below:
<!--ContentPanel - place additional content here-->
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<StackPanel Orientation="Horizontal">
<ListBox x:Name="lstSample">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<Image Source="{Binding ImagePath}" Stretch="None"/>
<StackPanel Orientation="Vertical">
<TextBlock Text="{Binding Name}" FontSize="45"/>
<TextBlock Text="{Binding Group}" FontSize="25"/>
</StackPanel>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</StackPanel>
</Grid>
The ListBox has the name lstSample, and is defined in terms of a DataTemplate. The template describes the appearance of each item and includes named bindings for each element of those items. In this example, a list component item will contain an image, user name and group as shown below:
Sample List Data
The sample list data is defined in the C# code behind, as shown below. Note that as required in the XAML binding definition above the properties are named Name, Group, and ImagePath,
public class SampleData
{
public string ImagePath { get; set; }
public string Name { get; set; }
public string Group { get; set; }
}
We then create instances of this data class for the list items and set them as the source for the ListBox.
//SimpleItems is a list containing items of class SampleData
SimpleItems = new List<SampleData>()
{
new SampleData(){Name = "User1:", ImagePath="/Images/user.png", Group ="wiki"},
new SampleData(){Name = "User2:", ImagePath="/Images/user.png", Group="froum"},
new SampleData(){Name = "User3:", ImagePath="/Images/user.png", Group ="nokia"}
};
//Bind the list data to the ListBox (note that lstSample is the name of the list defined in the XAML)
this.lstSample.ItemsSource = SimpleItems;
Dispatcher Timer API
Finally we will call the DispatcherTimer API to iterate through the items.
When the timer is triggerd, we call the timer_Tick event handler, which scrolls to the current index and marks it as selected, and then updates the index. After the last item is highlighted the index is reset to the first item.
void timer_Tick(object sender, EventArgs e)
{
lstSample.ScrollIntoView(lstSample.Items[index]); //scroll to the current item
lstSample.SelectedIndex = index; //highlight the selected item in the list box scroller
SampleData item = (SampleData)lstSample.Items[index]; // getting the current item
if (index < lstSample.Items.Count - 1)
{
index++;
}
else
{
lstSample.ScrollIntoView(lstSample.Items[0]); //scroll to the first item
index = 0; //reset the index when it reaches to the last item
}
}
Run it using F5 key.
References
~ Happy Coding ~
Sample Code
You can download sample code from Media:WmDevAutoScrollListBox.zip.



