ImageCell.cs 319 B

1234567891011121314151617
  1. using Foundation;
  2. using System;
  3. using UIKit;
  4. namespace ImageSearch.iOS
  5. {
  6. public partial class ImageCell : UICollectionViewCell
  7. {
  8. public ImageCell (IntPtr handle) : base (handle)
  9. {
  10. }
  11. public UIImageView Image => MainImage;
  12. public UILabel Caption => LabelCaption;
  13. }
  14. }