public override void DidCancel (PincodeBinding.CPLockController lockController)
		{
            if (this.Cancelled != null)
            {
                this.Cancelled(this, new PincodeEventArgs(string.Empty, true));
            }
		}
		public override void DidFinish (PincodeBinding.CPLockController lockController, string passcode)
		{
            if (this.Finished != null)
            {
                this.Finished(this, new PincodeEventArgs(passcode, false));
            }
		}
		public override bool ShouldAcceptPasscode (PincodeBinding.CPLockController lockController, string passcode)
		{
			this.screenController.ShowMessage ("Configuration", "Should accept password: " + passcode);
			return true;
		}