Ejemplo n.º 1
0
		public async void  OnSubmit (object sender, EventArgs e)
		{
			string postTitle = PostTitle.Text;
			string postContent = PostContent.Text;
			string authorName = ((App)Application.Current).UserEmail;

			if (postTitle != "") {
				if (postContent != "") {
						Forum1Post new_post = new Forum1Post (postTitle,postContent,authorName);
						var database = new Forum1DB ();
						database.InsertNewPost (new_post);
									}
			}
		}