Welcome to the Xamarin.Forms feedback portal. We’re happy you’re here! If you have feedback on how to improve the Xamarin.Forms, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

5
Votes

Wouldn't it be nice to use a shared name space?

It should be achievable using the assembly attribute: 

XmlnsDefinitionAttribute

For example in the button assembly one would add
[assembly: Xamarin.Forms.XmlnsDefinition("http://syncfusion.com", "
Syncfusion.Buttons.XForms
")]
and for the list view
 [assembly: Xamarin.Forms.XmlnsDefinition("http://syncfusion.com", "
Syncfusion.SfListView.XForms
")]

Then in a new xaml page you just need to add a ref xmlns:syncfusion="http://syncfusion.com"
and in the page you can use syncfusion:SfButton and syncfusion:SfListView.