public ImageStackTableViewController(TableSourceImageStack imageStackTable)
 {
     table = new UITableView();
     table.BackgroundColor = AppColors.LIGHT_TEAL;
     source                 = imageStackTable;
     View                   = table;
     table.Source           = source;
     View.AutoresizingMask  = UIViewAutoresizing.None;
     View.AutosizesSubviews = false;
 }
 public void InitializeImageStackViewTable()
 {
     imageStackTable = new TableSourceImageStack();
     imageStackTable.ImageStackToController += ImageStackToCollectionView;
     imageStackTable.HideTable     += ShowCollectionViewImageStack;
     imageStackTableViewController  = new ImageStackTableViewController(imageStackTable);
     ImageStackNavigationController = new UINavigationController(imageStackTableViewController);
     ImageStackNavigationController.View.BackgroundColor      = AppColors.LIGHT_TEAL;
     ImageStackNavigationController.View.Hidden               = true;
     ImageStackNavigationController.NavigationBar.Translucent = false;
 }