protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            //DialogFragment
            var transaction = FragmentManager.BeginTransaction();
            var dialogFragment = new DialogFragmentAlert();
            dialogFragment.Show(transaction, "dialog_fragment");
        }
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            //DialogFragment
            var transaction    = FragmentManager.BeginTransaction();
            var dialogFragment = new DialogFragmentAlert();

            dialogFragment.Show(transaction, "dialog_fragment");
        }