9 references to ControlUpdate
System.Windows.Forms (1)
System\Windows\Forms\DataBinding\Binding.cs (1)
1011BindingCompleteEventArgs args = CreateBindingCompleteEventArgs(BindingCompleteContext.ControlUpdate, lastException);
System.Windows.Forms.Tests (8)
System\Windows\Forms\BindingCompleteEventArgsTests.cs (4)
12yield return new object[] { null, BindingCompleteState.Success - 1, BindingCompleteContext.ControlUpdate - 1 }; 31yield return new object[] { null, BindingCompleteState.Success - 1, BindingCompleteContext.ControlUpdate - 1, null }; 50yield return new object[] { null, BindingCompleteState.Success - 1, BindingCompleteContext.ControlUpdate - 1, null, null }; 69yield return new object[] { null, BindingCompleteState.Success - 1, BindingCompleteContext.ControlUpdate - 1, null, null, false };
System\Windows\Forms\BindingTests.cs (4)
320yield return new object[] { new BindingCompleteEventArgs(null, BindingCompleteState.Success, BindingCompleteContext.ControlUpdate) }; 376yield return new object[] { new BindingCompleteEventArgs(null, BindingCompleteState.Success, BindingCompleteContext.ControlUpdate), new NullReferenceException() }; 409yield return new object[] { new BindingCompleteEventArgs(null, BindingCompleteState.Success, BindingCompleteContext.ControlUpdate), new SecurityException() }; 574Assert.Equal(BindingCompleteContext.ControlUpdate, e.BindingCompleteContext);