| File: System\Windows\Forms\ControlUpdateMode.cs | Web Access |
| Project: src\winforms\src\System.Windows.Forms\System.Windows.Forms.csproj (System.Windows.Forms) |
// 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> /// Determines when changes to a data source property get propagated up to /// the corresponding data-bound control property. /// </summary> public enum ControlUpdateMode { /// <summary> /// Control property is updated whenever the data source property changes, or /// the data source position changes. /// This is the default update mode. /// </summary> OnPropertyChanged = 0, /// <summary> /// Control property is never updated. Binding is "write-only" with respect /// to the data source. To force the control property to be updated, use /// the Binding.ReadValue method. /// </summary> Never = 1, }