Stop keypad from appearing on EditText mono for android app

Mono for android solution. Tested on android v2.3
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);// Create your application here
SetContentView(Resource.Layout.MyLayout);
Window.SetSoftInputMode (SoftInput.StateAlwaysHidden);
}