Edit
, Background (11.11.2015). , Background , setBackground . , . , , .
yesButton.SetBackgroundDrawable(ContextCompat.GetDrawable(context, Resource.Drawable.selector_green_button));
yesButton.SetBackgroundDrawable(ResourcesCompat.GetDrawable(Resources, Resource.Drawable.selector_green_button, Resources.NewTheme()));
yesButton.Background = ResourcesCompat.GetDrawable(Resources, Resource.Drawable.selector_green_button, Resources.NewTheme());
yesButton.Background = ContextCompat.GetDrawable(context, Resource.Drawable.selector_green_button);
yesButton.Background = Resources.GetDrawable(Resource.Drawable.selector_green_button);
Background @Jason, .
, , Drawable :
GetDrawable ( API 22 ), :
someControl.Background = ContextCompat.GetDrawable(context, Resource.Drawable.your_drawable);
Resources.GetDrawable(Resource.Drawable.your_drawable);
: Android