Hi Eduardo,
This line declares a XML namespace for the objects that are inside the file. It works as any other similar declaration in your other XAML files. To fix it:
xmlns:menuModel="clr-namespace:Examples.Menu.Common;assembly=Examples.Menu"
would become:
xmlns:menuModel="clr-namespace:<namespace>;assembly=<assembly>"
where <namespace> should be the namespace where the MenuModel and MenuItem classes are declared; <assembly> should be the assembly which contains those classes.
In our example the namespace is Examples.Menu.Common (see the MenuItem.cs for example) and the assembly is named Examples.Menu (this is set in the project properties).
Kind regards,
Valeri Hristov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the
Telerik Public Issue Tracking system and vote to affect the priority of the items.