~ubuntu-branches/ubuntu/karmic/moon/karmic

« back to all changes in this revision

Viewing changes to class/Microsoft.SilverlightControls/Controls/Src/ListBox/SelectionMode.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2009-02-14 12:01:08 UTC
  • Revision ID: james.westby@ubuntu.com-20090214120108-06539vb25vhbd8bn
Tags: upstream-1.0
Import upstream version 1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright © Microsoft Corporation. 
 
2
// This source is subject to the Microsoft Source License for Silverlight Controls (March 2008 Release).
 
3
// Please see http://go.microsoft.com/fwlink/?LinkID=111693 for details.
 
4
// All other rights reserved. 
 
5
 
 
6
namespace System.Windows.Controls
 
7
 
8
    /// <summary> 
 
9
    /// Defines the selection behavior for a ListBox.
 
10
    /// </summary> 
 
11
    [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1027:MarkEnumsWithFlags")]
 
12
    public enum SelectionMode
 
13
    { 
 
14
        /// <summary>
 
15
        /// The user can select only one item at a time.
 
16
        /// </summary> 
 
17
        Single = 0, 
 
18
        // Multiple = 1,
 
19
        // Extended = 2 
 
20
    }
 
21
}