- 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.
- 新編Visual Basic程序設計上機實驗教程
- Java多線程編程實戰指南:設計模式篇(第2版)
- 深入理解Java7:核心技術與最佳實踐
- Java程序設計與實踐教程(第2版)
- Elasticsearch for Hadoop
- Python機器學習算法與實戰
- .NET 3.5編程
- Spring Boot+MVC實戰指南
- 從零開始學算法:基于Python
- HTML并不簡單:Web前端開發精進秘籍
- Splunk Essentials
- HTML5 Game Development by Example:Beginner's Guide(Second Edition)
- 軟件測試項目實戰之功能測試篇
- 谷歌JAX深度學習從零開始學
- 算法(第4版)