На сайте Xamarin-а все есть.
developer.xamarin.com/recipes/android/fundamentals...
Насколько я понял, вам достаточно открытие во встроенном браузере, а не в самом приложении через
WebView, тогда этого должно быть достаточно:
protected override void OnCreate (Bundle bundle)
{
base.OnCreate (bundle);
Button button = FindViewById<Button> (Resource.Id.myButton);
button.Click += delegate {
var uri = Android.Net.Uri.Parse ("https://kontur.ru/events/future");
var intent = new Intent (Intent.ActionView, uri);
StartActivity (intent);
};
}