Is there a way to reuse a third-party control link?
For example, I have a link to my App.xaml
xmlns:cust="clr-namespace:ThirdParty.Controls;assembly=ThirdParty.Controls"
I don't want to repeat this namespace of an xml-sided control on every page / control that needs a library control.
Do I need to centralize these links and use the prefix defined here? Also of concern is the possibility of each control having a different prefix. In asp.net, you would specify the link in web.config, and it was available worldwide, I just want to see if there is a similar method in WPF.
source
share