private void LookupPassStorageButtonClicked(object sender, EventArgs eventArgs)
        {
            String   FileDir            = Android.OS.Environment.GetExternalStoragePublicDirectory(Android.OS.Environment.DirectoryDocuments).Path;
            EditText EncryptDecryptCode = FindViewById <EditText>(Resource.Id.EncryptDecryptCode);
            EditText WebsiteURL         = FindViewById <EditText>(Resource.Id.WebsiteURL);
            TextView SYSOutput          = FindViewById <TextView>(Resource.Id.SystemOutput);
            TextView NumOfIterations    = FindViewById <TextView>(Resource.Id.NumOfIterations);

            SYSOutput.Text = "Busy decrypting...";
            String Ret = UIHandlingService.ReadPass(EncryptDecryptCode.Text, FileDir, WebsiteURL.Text, NumOfIterations.Text);

            WebsiteURL.Text = "";

            SYSOutput.Text = Ret;
        }