ListBox and SelectionMode

image_pdfimage_print




Item 1
Item 2
Item 3
Item 4
Item 5
Item 6
Item 7
Item 8




//File:Window.xaml.cs

using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;

namespace ControlDemos
{
public partial class listbox : Window
{
public listbox()
{
InitializeComponent();
}
public void listBox1_SelectionChanged(object sender, SelectionChangedEventArgs args)
{
int nCount = listBox1.SelectedItems.Count;
for (int lp = 0; lp < nCount; lp++) Console.WriteLine(listBox1.SelectedItems[lp].ToString()); } } } [/csharp]