//--------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; namespace Microsoft.Windows.Controls { /// /// Enum for selection type of ComboBox column /// public enum ComboBoxBindingTarget { /// /// SelectedItem of the ComboBox will be used /// for Binding /// SelectedItem, /// /// SelectedValue property of ComboBox will /// be used for Binding /// SelectedValue, /// /// Text property of ComboBox will be /// used for Binding /// Text } }