| 
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.Windows.Forms;
 
/// <summary>
///  Indicates the direction of a binding operation.
/// </summary>
public enum BindingCompleteContext
{
    /// <summary>
    ///  Control value is being updated from data source value.
    /// </summary>
    ControlUpdate = 0,
 
    /// <summary>
    ///  Data source value is being updated from control value.
    /// </summary>
    DataSourceUpdate = 1,
}
 |