Does Xamarin.Forms XAML have an equivalent to the WPF input binding? And specifically would I be able to add it to the ContentPage tag. I'm using MVVM so I would prefer to not put anything in the code behind.
<ContentPage>
<ContentPage.InputBindings>
<InputBinding Type="EnterPressed" Command="{Binding EnterCommand}"/>
...