Ejemplo n.º 1
0
 private void fillListBoxTaggedPost()
 {
     listBoxTaggedPosts.DisplayMember = "Name";
     foreach (Post post in LogicServices.GetPostsTaggedIn())
     {
         if (post.Place != null)
         {
             listBoxTaggedPosts.Invoke(new Action(() => listBoxTaggedPosts.Items.Add(post)));
         }
     }
 }