internal override void Load(JObject jObject)
 {
     MediaComments = CreateCollection(jObject, new InstagramCommentCollection("Media Comments"), "media_comments");
     LiveComments  = CreateCollection(jObject, new InstagramCommentCollection("Live Comments"), "live_comments");
 }
Example #2
0
 public InstragramCommentsControl(IInstagramCommentCollection instagramCommentCollection)
 {
     InitializeComponent();
     lblTitle.Text = instagramCommentCollection.Name;
     instagramCommentBindingSource.DataSource = instagramCommentCollection;
 }