Hi Devel,
I have discussed this with the team and we believe that this is not connected to this issue. I would suggest opening a new ticket which is a private thread where you can attach a sample project that repoduces this. This will allow us to properly investigate and propose a solution.
Thank you in advance for your patience and cooperation.
Regards,
Dimitar
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.
For client application we are using extensively ReactiveUI with Akavache.
I will post the method used to cache user selections:
```
public static IObservable<TProp?> PersistValue<T, TProp>(```
And I want to cache for instance PdfViewer.Mode.
I see no real reason why the dependecny property should not work and it should be fixed.
Hi Devel,
Can you describe your requirements in detail? Which properties do you need the event for? What do you want to achieve in this case?
I have reviewed our code and it turns out the PropertyChenged event was never used and nobody ever needed this or noticed that it does not work.
Thank you in advance for your patience and cooperation. I am looking forward to your reply.
Regards,
Dimitar
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.
Is there any real reason why the PropertyChanged should not be raised?
We have caching functionality for dependency properties, which is core function of WPF. And this breaks it. We are not looking forward to rewrite it into event based caching. In addition, not every DP has its own event.
Hello Devel,
We are aware that the PropertyChanged event is not raised. You should use a different approach in this case. I have attached a small project that shows this.
Let me know how this works for you.
Regards,
Dimitar
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.
Hello,
After we investigated this we found that all of the properties in this control are dependency properties. In this case, there is no need for the PropertyChanged event since one can use the following approach to track the changes: c# - How to subscribe to change DependencyProperty?.In addition, we have events for most of the properties.
Thank you for your understanding.
Regards,
Dimitar
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.