2 implementations of ICustomMauiCollectionViewDelegate
Microsoft.Maui.Controls (2)
Handlers\Items\iOS\ItemsViewController.cs (1)
14 public abstract class ItemsViewController<TItemsView> : UICollectionViewController, MauiCollectionView.ICustomMauiCollectionViewDelegate
Handlers\Items2\iOS\ItemsViewController2.cs (1)
16 public abstract class ItemsViewController2<TItemsView> : UICollectionViewController, Items.MauiCollectionView.ICustomMauiCollectionViewDelegate
6 references to ICustomMauiCollectionViewDelegate
Microsoft.Maui.Controls (6)
Handlers\Items\iOS\ItemsViewController.cs (1)
209 void MauiCollectionView.ICustomMauiCollectionViewDelegate.MovedToWindow(UIView view)
Handlers\Items\iOS\MauiCollectionView.cs (4)
10 WeakReference<ICustomMauiCollectionViewDelegate>? _customDelegate; 34 if (_customDelegate?.TryGetTarget(out var target) == true) 40 internal void SetCustomDelegate(ICustomMauiCollectionViewDelegate customDelegate) 42 _customDelegate = new WeakReference<ICustomMauiCollectionViewDelegate>(customDelegate);
Handlers\Items2\iOS\ItemsViewController2.cs (1)
197 void Items.MauiCollectionView.ICustomMauiCollectionViewDelegate.MovedToWindow(UIView view)