I\'m trying to add a custom content to a button in Xamarin Forms.
By default Button is created like this:
Unfortunately, at the moment Xamarin.Forms does not support a Content property for the Button.
You would have to create your own User Control with a combination of other controls to try and recreate a Button control. You could then make part of your User Control a ContentView, create a BindableProperty to bind your Grid to, then use the a BindingPropertyChangedDelegate to assign the Content property of your ContentView.