Inheritance: Android.Support.V4.App.DialogFragment
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            // Create your application here
            SetContentView(Resource.Layout.Main);

            var button = FindViewById<Button>(Resource.Id.Button_Launch);
            button.Click += delegate
            {
                var dialog = new CustomDialogFragment();
                dialog.Show(SupportFragmentManager, "dialog");
            };
        }
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            // Create your application here
            SetContentView(Resource.Layout.Main);

            var button = FindViewById <Button>(Resource.Id.Button_Launch);

            button.Click += delegate
            {
                var dialog = new CustomDialogFragment();
                dialog.Show(SupportFragmentManager, "dialog");
            };
        }