How show MvxDialogFragment in MvxFragment. Can not use FragmentMaganer and other solution.
No Work
public void ShowFragmentLatestInvoices()
    {
        var transaction = FragmentManager.BeginTransaction();
        var Manager = FragmentManager.BeginTransaction ();
        LatestInvoicesFragment LatestInvoicesFragment = new LatestInvoicesFragment();
        LatestInvoicesFragment.DataContext = ViewModel.InvoiceVM;
        LatestInvoicesFragment.Show(SupportFragmentManager, "LatestInvoices_fragment");
        OnAttachFragment (LatestInvoices);
    }
				
                        
Create
private MvxFragmentActivity myContext;add
myContext = (MvxFragmentActivity)this.Activity;and replace
SupportFragmentManagerwithmyContext.SupportFragmentMannager