コード例 #1
0
ファイル: TCActionView.cs プロジェクト: borain89vn/demo2
		public void finishSendEmailProfileRequest (TCEmailProfileComponent sender)
		{
			if (this.Delegate != null)
				this.Delegate.finishActionRequest (this, ACTION_INDEX.EMAIL);
		}
コード例 #2
0
ファイル: TCActionView.cs プロジェクト: borain89vn/demo2
		partial void sendEmailClicked (NSObject sender)
		{
			TCEmailProfileComponent emailProfileComp = new TCEmailProfileComponent (this.parentController);
			emailProfileComp.Delegate = this;
			emailProfileComp.build (specialistInfo.Account.Id);
		}
コード例 #3
0
ファイル: TCActionView.cs プロジェクト: borain89vn/demo2
		public void emailProfileComponentFailure (TCEmailProfileComponent sender, string title, string message)
		{
			MUtils.showAlert (this.parentController, title, message);
		}