Exemplo n.º 1
0
 public static void MapItemsSource(ItemsViewHandler <TItemsView> handler, ItemsView itemsView)
 {
     MapItemsUpdatingScrollMode(handler, itemsView);
     handler.Controller?.UpdateItemsSource();
 }
Exemplo n.º 2
0
 public static void MapIsVisible(ItemsViewHandler <TItemsView> handler, ItemsView itemsView)
 {
     handler.PlatformView.UpdateVisibility(itemsView);
 }
Exemplo n.º 3
0
 public static void MapItemsUpdatingScrollMode(ItemsViewHandler <TItemsView> handler, ItemsView itemsView)
 {
 }
Exemplo n.º 4
0
 public static void MapItemsSource(ItemsViewHandler <TItemsView> handler, ItemsView itemsView)
 {
 }
Exemplo n.º 5
0
 public static void MapFlowDirection(ItemsViewHandler <TItemsView> handler, ItemsView itemsView)
 {
 }
Exemplo n.º 6
0
 public static void MapEmptyViewTemplate(ItemsViewHandler <TItemsView> handler, ItemsView itemsView)
 {
     handler.Controller?.UpdateEmptyView();
 }
Exemplo n.º 7
0
 public static void MapIsVisible(ItemsViewHandler <TItemsView> handler, ItemsView itemsView)
 {
     handler.Controller?.UpdateVisibility();
 }
Exemplo n.º 8
0
 public static void MapEmptyView(ItemsViewHandler <TItemsView> handler, ItemsView itemsView)
 {
     handler.UpdateEmptyView();
 }
Exemplo n.º 9
0
 public static void MapFlowDirection(ItemsViewHandler <TItemsView> handler, ItemsView itemsView)
 {
     handler.PlatformView.UpdateFlowDirection(itemsView);
 }
Exemplo n.º 10
0
 public static void MapHorizontalScrollBarVisibility(ItemsViewHandler <TItemsView> handler, ItemsView itemsView)
 {
     handler.UpdateHorizontalScrollBarVisibility();
 }
Exemplo n.º 11
0
 public static void MapVerticalScrollBarVisibility(ItemsViewHandler <TItemsView> handler, ItemsView itemsView)
 {
     handler.UpdateVerticalScrollBarVisibility();
 }
Exemplo n.º 12
0
 public static void MapItemsSource(ItemsViewHandler <TItemsView> handler, ItemsView itemsView)
 {
     handler.UpdateItemsSource();
 }
Exemplo n.º 13
0
 public static void MapIsVisible(ItemsViewHandler <TItemsView> handler, ItemsView itemsView)
 {
 }
Exemplo n.º 14
0
 public static void MapEmptyViewTemplate(ItemsViewHandler <TItemsView> handler, ItemsView itemsView)
 {
 }
Exemplo n.º 15
0
 public static void MapVerticalScrollBarVisibility(ItemsViewHandler <TItemsView> handler, ItemsView itemsView)
 {
     handler.Controller?.CollectionView?.UpdateVerticalScrollBarVisibility(itemsView.VerticalScrollBarVisibility);
 }
Exemplo n.º 16
0
 public static void MapItemsSource(ItemsViewHandler <TItemsView> handler, ItemsView itemsView)
 {
     handler.PlatformView.UpdateItemsSource(itemsView);
 }
Exemplo n.º 17
0
 public static void MapItemTemplate(ItemsViewHandler <TItemsView> handler, ItemsView itemsView)
 {
     handler.UpdateLayout();
 }
Exemplo n.º 18
0
 public static void MapVerticalScrollBarVisibility(ItemsViewHandler <TItemsView> handler, ItemsView itemsView)
 {
     handler.PlatformView.VerticalScrollBarVisiblePolicy = itemsView.VerticalScrollBarVisibility.ToPlatform();
 }
Exemplo n.º 19
0
 public static void MapFlowDirection(ItemsViewHandler <TItemsView> handler, ItemsView itemsView)
 {
     handler.Controller?.UpdateFlowDirection();
 }
Exemplo n.º 20
0
 public static void MapEmptyViewTemplate(ItemsViewHandler <TItemsView> handler, ItemsView itemsView)
 {
     handler.PlatformView.UpdateAdaptor(itemsView);
 }
Exemplo n.º 21
0
 public static void MapItemsUpdatingScrollMode(ItemsViewHandler <TItemsView> handler, ItemsView itemsView)
 {
     handler._layout.ItemsUpdatingScrollMode = itemsView.ItemsUpdatingScrollMode;
 }
Exemplo n.º 22
0
        public static void MapItemsSource(SelectableItemsViewHandler <TItemsView> handler, SelectableItemsView itemsView)
        {
            ItemsViewHandler <TItemsView> .MapItemsSource(handler, itemsView);

            MapSelectedItem(handler, itemsView);
        }