In WPF, Can I use binding with values defined in Settings? If this is possible, please provide a sample.
|
1
|
|
|
|
|
|
First, you need to add a custom XML namespace that will design the namespace where the settings are defined:
Then, in your XAML file, access the property using the following syntax:
So here is the final result code:
Source: WPF - How to bind a control to a property defined in the Settings? |
|||
|
|
|
The solution above does work, but I find it quite verbose... you could use a custom markup extension instead, that could be used like this :
Here is the code for this extension :
More details here : http://tomlev2.wordpress.com/2008/11/18/wpf-binding-to-application-settings-using-a-markup-extension/ |
||
|
