﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - Crosslight - Binding the Scrolled event with the Binding Provider</title><link>http://www.intersoftsolutions.com/Community/Crosslight/Binding-the-Scrolled-event-with-the-Binding-Provider/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>Binding the Scrolled event with the Binding Provider</title><link>http://www.intersoftsolutions.com/Community/Crosslight/Binding-the-Scrolled-event-with-the-Binding-Provider/</link><pubDate>Mon, 16 Jun 2014 22:01:10 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: #1f497d;"&gt;In order to catch the scrolled event of TableView we need to override ViewDidAppear and assign the TableView event handler in here.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;public override void ViewDidAppear(bool animated)
{
    base.ViewDidAppear(animated);

    this.TableView.Scrolled += TableViewScrolled;
}

private void TableViewScrolled(object sender, EventArgs e)
{
    // add scrolled event handler code here
}&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Hope this help.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Binding the Scrolled event with the Binding Provider</title><link>http://www.intersoftsolutions.com/Community/Crosslight/Binding-the-Scrolled-event-with-the-Binding-Provider/</link><pubDate>Mon, 16 Jun 2014 09:21:03 GMT</pubDate><dc:creator>nick5454</dc:creator><description>The problem I have is that when using the crosslight TableView, I can't access this event. Is it possible to work up a quick example with one of the wizards to show how I would catch the Scrolled event using the Master-Detail example?&lt;br&gt;</description></item><item><title>Binding the Scrolled event with the Binding Provider</title><link>http://www.intersoftsolutions.com/Community/Crosslight/Binding-the-Scrolled-event-with-the-Binding-Provider/</link><pubDate>Mon, 16 Jun 2014 08:19:25 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: #1f497d;"&gt;This scenario is view-specific. I'd like to recommend you to implement it on the view level, since the behavior might not similar on the other platform.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Hope this helps.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Binding the Scrolled event with the Binding Provider</title><link>http://www.intersoftsolutions.com/Community/Crosslight/Binding-the-Scrolled-event-with-the-Binding-Provider/</link><pubDate>Mon, 16 Jun 2014 01:01:45 GMT</pubDate><dc:creator>nick5454</dc:creator><description>&lt;p&gt;How do I bind the scrolled event with the table view to my binding provider. Reason why I say this is because I have to display Banners for advertising on a UITableViewController&amp;lt;ListItemViewModel&amp;gt;. So what I need to do is on every scroll event I set the UIImageView back to the very bottom of the screen.&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;I assume:&lt;/p&gt;&lt;p&gt;this.AddBinding("TableView", BindableProperties.Command, "Scrolled");&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;Is that wrong, I assume it is?&lt;br&gt;&lt;/p&gt;</description></item></channel></rss>