You can do this by setting theme in the Activity attribute:
[Activity (Label = "@string/app_name", MainLauncher = true, Theme = "@android:style/Theme.Black.NoTitleBar.Fullscreen")]
Alternatively, if you are only after a specific action is full-screen, then set the following flags in the OnCreate property:
this.Window.AddFlags(WindowManagerFlags.Fullscreen); this.Window.ClearFlags(WindowManagerFlags.Fullscreen);
source share