Silverlight ListBox Control

The Silverlight ListBox control provides all the functionality of a standard (web) ListBox.  Here we have a simple example showing how to implement a ListBox in XAML and how to respond to selection changes in C#.

How to Use the ListBox Control

To use it on your Silverlight page:

<UserControl x:Class="ListBox_Test.Page"
    xmlns="http://schemas.microsoft.com/client/2007"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Width="400" Height="300">
    <Canvas>
        <ListBox x:Name="list" Canvas.Top="10" Canvas.Left="10" Width="200" Height="200" SelectionChanged="list_ItemSelected">
            <ListBoxItem Content="Australia" />
            <ListBoxItem Content="Canada" />
            <ListBoxItem Content="China" />
            <ListBoxItem Content="France" />
            <ListBoxItem Content="Germany" />
            <ListBoxItem Content="India" />
            <ListBoxItem Content="Italy" />
            <ListBoxItem Content="Japan" />
            <ListBoxItem Content="Pakistan" />
            <ListBoxItem Content="Portugal" />
            <ListBoxItem Content="Republic of Ireland" />
            <ListBoxItem Content="Russia" />
            <ListBoxItem Content="Saudi Arabia" />
            <ListBoxItem Content="Spain" />
            <ListBoxItem Content="Sweden" />
            <ListBoxItem Content="United Kingdom" />
            <ListBoxItem Content="USA" />
        </ListBox>
    </Canvas>
</UserControl>


Our example contains one listbox, populated with some country information.  You can hook into the ItemSelected event to detect selections and provide your own logic here.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;

namespace ListBox_Test
{
    public partial class Page : UserControl
    {
        public Page()
        {
            InitializeComponent();
        }

        private void list_ItemSelected(object sender, EventArgs e)
        {
            // Process the selected item changed event here
        }
    }
}

 
 
Latest Games
Zombie Escape
Apr 19, 2016
Plays: 2,513

Zombie Escape ScreenshotDrive fast before the crazy mutant zombies get you!

6 Ratings/4.1 Average
Car Parking
Jan 16, 2016
Plays: 2,380

Car Parking ScreenshotGuide the car to its parking space in this fun Car Parking game.

1 Rating/5 Average
Trash It
Jan 11, 2016
Plays: 2,286

Trash It ScreenshotAim for the Trash Can and get the various items of Trash in the bin.

4 Ratings/5 Average
Sky Fly
Jan 11, 2016
Plays: 2,435

Sky Fly ScreenshotFly your plane in this colorful vertical scrolling shoot-em-up. Blast the bad guys and collect any bonus's they leave behind.

1 Rating/5 Average
Professor Snappy
Jan 11, 2016
Plays: 1,969

Professor Snappy ScreenshotPop as many bubbles as possible in this fun and colorful bubble popping game. The levels start off easy enough but gradually get harder!

1 Rating/5 Average
Monster Match Saga
Jan 10, 2016
Plays: 2,295

Monster Match Saga ScreenshotHere we have a bunch of monsters that need to be matched up. Look out for the bomb and spinning monsters that will cause special damage!

3 Ratings/4.6 Average
Fly Bird Fly
Jan 10, 2016
Plays: 2,122

Fly Bird Fly ScreenshotGuide your friendly Bird through the maze of pipes and other obstacles collecting the Stars in this cool arcade game inspired by the legendary Flappy Bird.

1 Rating/5 Average
Life In One
Jan 10, 2016
Plays: 2,297

Life In One ScreenshotYou are stranded on an Alien planet. Your goal is to build a space rocket and escape. Start by building units to create power and mine the metal patches. Build defenses to defend your base from the advancing Aliens and Zombies!

2 Ratings/3 Average
X Pool
Jan 02, 2016
Plays: 2,914

X Pool ScreenshotPlay Pool against the computer or battle against your friends in the online mode!

3 Ratings/3 Average
Fruit Slicer
Jan 02, 2016
Plays: 2,010

Fruit Slicer ScreenshotSlice the fruit that is thrown up onto the screen. Slice the fruit into multiple pieces for maximum points!

1 Rating/5 Average