void ReleaseDesignerOutlets()
 {
     if (EmployeeCollection != null)
     {
         EmployeeCollection.Dispose();
         EmployeeCollection = null;
     }
 }
 void ReleaseDesignerOutlets()
 {
     if (ThumbnailCollection != null)
     {
         ThumbnailCollection.Dispose();
         ThumbnailCollection = null;
     }
 }
 void ReleaseDesignerOutlets()
 {
     if (_collectionView != null)
     {
         _collectionView.Dispose();
         _collectionView = null;
     }
 }
		void ReleaseDesignerOutlets ()
		{
			if (PeopleCollection != null) {
				PeopleCollection.Dispose ();
				PeopleCollection = null;
			}

			if (PeopleArray != null) {
				PeopleArray.Dispose ();
				PeopleArray = null;
			}
		}
Esempio n. 5
0
        void ReleaseDesignerOutlets()
        {
            if (PeopleCollection != null)
            {
                PeopleCollection.Dispose();
                PeopleCollection = null;
            }

            if (PeopleArray != null)
            {
                PeopleArray.Dispose();
                PeopleArray = null;
            }
        }
Esempio n. 6
0
 public override void ItemsSelected(AppKit.NSCollectionView collectionView, Foundation.NSSet indexPaths)
 {
     IndexesSelected?.Invoke(indexPaths);
     base.ItemsSelected(collectionView, indexPaths);
 }