Ejemplo n.º 1
0
 public PopupAttributes(Image Selected, UIViewController presentingController, TableSourceAttributes leftTable, TableSourceImageAttributes rightTable, ImageAttributesTableViewController attrTable) : base("PopupAttributes", null)
 {
     currentlySelectedImage = Selected;
     PresentingController   = presentingController;
     RightAttributesTable   = rightTable;
     LeftAttributesTable    = leftTable;
     ImageAttributeTable    = attrTable;
 }
Ejemplo n.º 2
0
        public void InitializeRightTableView()
        {
            //Right Table (Image Attributes)
            RightAttributesTableSource = new TableSourceImageAttributes();
            RightAttributesTableSource.ImageAttributeToAttributes += InsertAttributeForImage;
            RightImageAttributeTable            = new ImageAttributesTableViewController(RightAttributesTableSource);
            ImageAtrributesNavigationController = new MasterTableNavigationController(RightImageAttributeTable);

            /*
             * Get the left Button handler, show the listview
             */

            UIBarButtonItem addAttribute = ImageAtrributesNavigationController.LeftButton();

            addAttribute.Clicked += AddImageAttribute;
            RightAttributesTableSource.AttributeRowToController += GetAttributeRowSelectedRight;
        }
Ejemplo n.º 3
0
 public void setRightImageAttributeTable(ImageAttributesTableViewController RightImageAttributeTable)
 {
     this.RightImageAttributeTable = RightImageAttributeTable;
 }