예제 #1
0
 private void NewInvoker()
 {
     Invoker = new CSIBaseInvoker(CSISystemContext)
     {
         UseAsync = true
     };
 }
예제 #2
0
        private void ShowDialog(Exception Ex)
        {
            FragmentTransaction ft     = FragmentManager.BeginTransaction();
            CSIMessageDialog    Dialog = (CSIMessageDialog)FragmentManager.FindFragmentByTag("Dialog");

            if (Dialog != null)
            {
                ft.Show(Dialog);
            }
            else
            {
                Dialog = new CSIMessageDialog(Application.Context.GetString(Resource.String.app_name), CSIBaseInvoker.TranslateError(Ex), DialogTypes.OK);
                Dialog.Show(ft, "Dialog");
            }
        }