//--------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; namespace ExtendedGrid.Microsoft.Windows.Controls { /// /// The selection modes supported by DataGrid. /// public enum DataGridSelectionMode { /// /// Only one item can be selected at a time. /// Single, /// /// Multiple items can be selected, and the input gestures will default /// to the "extended" mode. /// /// /// In Extended mode, selecting multiple items requires holding down /// the SHIFT or CTRL keys to extend the selection from an anchor point. /// Extended, } }