WPF XAML Namespace import
- by Andrey Khataev
I've found that in order to use PRISM's classes in XAML you need to import namespace in that way:
xmlns:cal="http://www.codeplex.com/CompositeWPF"
this way is new to me, so I wanted to know, how hyperlink could be alias of usual notation of namespace import? so the intellisence knows in which assembly it should search this component?
Thanks!