Hi. I was trying to repeat the simple scenario where you bind 3 properties of an object to 3 textboxes using WPF. If you use Windows Form, after adding the data source, you can complete the walkthrough working with the property panel on the right, the designer adds a bindingsource and the object does not need to implement INotifyPropertyChanged, unless you want some stuff done when you set the properties from code behind. If you use WPF, my impression is that it is not possible to complete the walkthrough without adding few lines of code in the XAML file. I mean, you have to define a static resource, after adding a reference to the namespace where the object is. So, you can complete the walkthrough working more or less as in the Windows Form scenario, even if you have to implement the INotifyPropertyChanged in the class from which you create the object. However, I can understand it, because after adding the resource in the XAML, you have to catch it from code behind and set the properties from there, a scenario quite similar to the Windows Form scenario when you want the textboxes updated if you set the properties programmatically from code behind. I would like to know if my digression is correct and if it is possible to add a reference to the namespace where the object is and to add the static resource, both in XAML, during design time, without having to write few lines of code in the XAML itself. I know that it is possible working on the data source panel on the left, dragging and dropping, but I would like to repeat the walkthrough in tha same way I would in a Windows Form scenario, working on the property panel of the textboxes on the right. Thanks.
↧