I use a lot of bindings in XAML and sometimes I use path= in a binding and sometimes not. In which cases do I need the path= and when can I omit this?
|
|
It can always be omitted as it's the default property of the Binding XAML extension. It's only specified explicitly for clarity when multiple properties are used. |
|||||||
|
|
Path is used to specify the name of the property of the underlying object to bind to. When you bind to the DataContext, you can omit Path:
When you need to specify a source other than the DataContext you can use
|
||||
|
|
|
This is due to the fact that the Binding class has a default constructor, used when you have bindings like So when there is a list of property/value pairs the binding is created as
The second form is used for bindings like
It's always correct (and possibly more correct) to specify Path=, but you can get away without it. |
||||
|
|
|
You can always omit the Path= when you write the path to the property directly behind the Binding statement.
is the same as
When you inline the path to the property you need to specify it with Path=
|
|||
|
|
|
Like Richard Szalay said, it is optional if it is the first property. But in my opionion it is easier to read if you enter the path property. Also the code highlighting looks better. |
|||
|
|