Exemple #1
0
 public ImageAttributesTableViewController(ICustomTableViewSource source) : base()
 {
     tableController       = new UITableViewController();
     tableController.Title = "Attributes";
     table = new UITableView();
     table.BackgroundColor = AppColors.LIGHT_TEAL;
     Source               = source;
     table.Source         = (UITableViewSource)Source;
     tableController.View = table;
 }
Exemple #2
0
        public ProfilesTableViewController(ICustomTableViewSource source)
        {
            tableController = new UITableViewController();
            //tableController.Title = "Profiles";
            table = new UITableView();
            table.BackgroundColor = AppColors.LIGHT_TEAL;
            Source       = source;
            table.Source = (UITableViewSource)Source;

            tableController.View = table;
        }
Exemple #3
0
 public NewSessionTableViewController(ICustomTableViewSource source)
 {
     tableController       = new UITableViewController();
     tableController.Title = "New Session:Select Category";
     //tableController.Title.StringSize(UIFont.FromName("Arial", 20f));
     table = new UITableView();
     table.BackgroundColor = AppColors.LIGHT_TEAL;
     Source               = source;
     table.Source         = (UITableViewSource)Source;
     tableController.View = table;
 }