Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md (typo) #61

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/Binding/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ Because `{x:Bind}` uses generated code to achieve its benefits, it requires type
Starting in Windows 10, `{x:Bind}` allow us to bind functions directly in the XAML files. This enables:

- A simpler way to achieve value conversion
- A way to resolve Bindings that depend on mnore than one parameter.
- A way to resolve Bindings that depend on more than one parameter.

We can bind functions located in the code behind of the page or control, and even static functions if we use the XMLNamespace:ClassName.MethodName syntax. Let's see examples of how to use the functions in our Bindings:

Expand Down Expand Up @@ -255,4 +255,4 @@ We have 2 binding mechanisims: `{x:Bind}` and `{Binding}`.

The new Windows 10 markup extension `{x:Bind}`, is an alternative to `{Binding}`. `{x:Bind}` lacks some features of `{Binding}`, but it runs in less time and less memory than `{Binding}` and supports better debugging. With `{x:Bind}` we can also bind functions and events.

*Value Converters* are great tools to be used in our UI binding expressions. Their function is to apply some format over the original values of the ViewModels and display them in our Views.
*Value Converters* are great tools to be used in our UI binding expressions. Their function is to apply some format over the original values of the ViewModels and display them in our Views.