Guest User

Untitled

a guest
Jul 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. using System.Windows;
  2. using System.Windows.Controls;
  3.  
  4. namespace InfiniteScroll
  5. {
  6. public partial class MainPage : UserControl
  7. {
  8. public MainPage()
  9. {
  10. InitializeComponent();
  11. }
  12.  
  13. private void LayoutRoot_Loaded(object sender, RoutedEventArgs e)
  14. {
  15. ScrollingListBox.ItemsSource = new ScrollingObservableItemsSource {Username = "notch"};
  16. ScrollingListBox.LoadItems();
  17. }
  18. }
  19. }
Add Comment
Please, Sign In to add comment