- Mastering Windows Presentation Foundation
- Sheridan Yuen
- 229字
- 2021-06-24 16:49:07
Data binding basics
In WPF, we use the Binding class to create our bindings. In general, it is fair to say that every binding will contain four constituent parts. Let's take a look at them now:
- The first is the binding source; typically, this will be one of our View Models.
- The second is the path to the property from the source object that we would like to data bind to.
- The third is the binding target; this will typically be a UI control.
- The fourth is the path to the property of the binding target that we want to data bind to.
If one of our bindings does not work, it is most likely that one of these four things has not been set correctly. It is important to stress that the target property will typically be from a UI control, because there is a data binding rule that states that the binding target must be a Dependency Property. The properties of most UI controls are Dependency Properties, and so, this rule simply enforces that data normally travels in the direction from our View Model data sources to the binding target UI controls.
We'll examine the direction of data bound data traversal later in the chapter, but let's first focus on the syntax that is used to specify the value of the Binding.Path property.
- SpringMVC+MyBatis快速開發與項目實戰
- 深入淺出Windows API程序設計:編程基礎篇
- Interactive Applications Using Matplotlib
- Mastering Business Intelligence with MicroStrategy
- Building Machine Learning Systems with Python(Second Edition)
- 詳解MATLAB圖形繪制技術
- Python:Deeper Insights into Machine Learning
- 軟件測試綜合技術
- Bootstrap for Rails
- Scala編程實戰
- Mastering SciPy
- WordPress Search Engine Optimization(Second Edition)
- C/C++語言程序開發參考手冊
- LiveCode Mobile Development Hotshot
- Neo4j High Performance