This repository has been archived on 2024-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
Sic06/FrameworkLocal/UIClient/DataGridTransform/DataGrid/Microsoft/Windows/Controls/ComboBoxBindingTarget.cs

35 lines
855 B
C#
Raw Normal View History

2023-01-13 10:57:37 +08:00
//---------------------------------------------------------------------------
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
//---------------------------------------------------------------------------
using System;
namespace Microsoft.Windows.Controls
{
/// <summary>
/// Enum for selection type of ComboBox column
/// </summary>
public enum ComboBoxBindingTarget
{
/// <summary>
/// SelectedItem of the ComboBox will be used
/// for Binding
/// </summary>
SelectedItem,
/// <summary>
/// SelectedValue property of ComboBox will
/// be used for Binding
/// </summary>
SelectedValue,
/// <summary>
/// Text property of ComboBox will be
/// used for Binding
/// </summary>
Text
}
}