■ BindingExpression 클래스의 UpdateSourceTrigger 속성에서 Explicit 값을 설정하는 방법을 보여준다.
▶ 예제 코드 (XAML)
1 2 3 4 5 6 7 8 |
<TextBox x:Name="textBox" Text="{Binding Value, Mode=TwoWay, UpdateSourceTrigger=Explicit}" /> <Button Content="Update" Click="updateButton_Click" /> |
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
using System.Windows; using System.Windows.Data; /// <summary> /// 테스트 데이터 /// </summary> public class TestData { //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 값 - Value /// <summary> /// 값 /// </summary> public string Value { get; set; } #endregion } ... /// <summary> /// 테스트 데이터 /// </summary> private TestData testData; ... this.testData = new TestData() { Value = "One" }; this.textBox.DataContext = this.testData; ... #region Update 버튼 클릭시 처리하기 - updateButton_Click(sender, e) /// <summary> /// Update 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void updateButton_Click(object sender, RoutedEventArgs e) { BindingExpression bindingExpression = this.textBox.GetBindingExpression(TextBox.TextProperty); MessageBox.Show("Before UpdateSource, Test = " + this.testData.Value); bindingExpression.UpdateSource(); MessageBox.Show("After UpdateSource, Test = " + this.testData.Value); } #endregion |