Example #1
0
 void SetFollowersLV()
 {
     try
     {
         FollowVM.FollowersGenerator.SetLV(FollowersItemsLV.FindScrollViewer());
     }
     catch { }
 }
Example #2
0
        private void FollowersItemsLVLoaded(object sender, RoutedEventArgs e)
        {
            SetFollowersLV();
            ScrollView = FollowersItemsLV.FindScrollViewer();
            if (ScrollView != null)
            {
                ScrollView.ViewChanging += ScrollViewViewChanging;
            }


            ScrollView2 = FollowingItemsLV.FindScrollViewer();
            if (ScrollView2 != null)
            {
                ScrollView2.ViewChanging += ScrollViewViewChanging;
            }
        }