A Xamarin.Forms.ListView with an implementation of a DataTemplateSelector will be the easiest way to make this BraveHeart work mentioned in his comment. But you can do this using your own renderer to perform this action on the inline control.
On iOS:
Xamarin.Forms.TableView inherits from UITableView, which provides the ScrollToRow method. In your case, you want to call the following method in a custom renderer when it is called.
ScrollToRow(NSIndex.FromIndex(0), UITableViewScrollPosition.Top, true);
Xamarin.iOS documentation on the ScrollToRow method
On Android:
The same idea here, and you would like to call the following method in Custom Renderer:
SmoothScrollToPosition(0,0);
Xamarin.Android documentation on SmoothScrollToPosition
, , Xamarin.Forms.Button.Clicked . OnPropertyChanged boolean Xamarin.Forms, . Xamarin.Forms.ListView , . , Xamarin.Forms Android . - .
, !