xamarin clicked event on button code example
Example: xamarin android click event
Button button = FindViewById<Button> (Resource.Id.btnOne);
button.Click += delegate {
button.Text = string.Format ("{0} clicks!", count++);
};