public LanguageTableViewSource(UIKit.UITableView tableView, IReactiveNotifyCollectionChanged <LanguageItemViewModel> collection)
     : base(tableView, collection, LanguageTableViewCell.Key, 44f)
 {
     tableView.RegisterClassForCellReuse(typeof(LanguageTableViewCell), LanguageTableViewCell.Key);
 }
 public IssueAssigneeTableViewSource(UIKit.UITableView tableView, IReactiveNotifyCollectionChanged <IssueAssigneeItemViewModel> collection)
     : base(tableView, collection, IssueAssigneeTableViewCell.Key, 44.0f)
 {
     tableView.RegisterClassForCellReuse(typeof(IssueAssigneeTableViewCell), IssueAssigneeTableViewCell.Key);
 }
Exemple #3
0
 public ReleasesTableViewSource(UIKit.UITableView tableView, IReactiveNotifyCollectionChanged <ReleaseItemViewModel> collection)
     : base(tableView, collection, ReleaseTableViewCell.Key, 54.0f)
 {
     tableView.RegisterClassForCellReuse(typeof(ReleaseTableViewCell), ReleaseTableViewCell.Key);
 }
Exemple #4
0
 public UserTableViewSource(UIKit.UITableView tableView, IReactiveNotifyCollectionChanged <UserItemViewModel> collection)
     : base(tableView, collection, UserTableViewCell.Key, 44.0f)
 {
     tableView.RegisterClassForCellReuse(typeof(UserTableViewCell), UserTableViewCell.Key);
 }
 public SourceContentTableViewSource(UIKit.UITableView tableView, IReactiveNotifyCollectionChanged <SourceItemViewModel> collection)
     : base(tableView, collection, SourceContentCellView.Key, 44.0f)
 {
     tableView.RegisterClassForCellReuse(typeof(SourceContentCellView), SourceContentCellView.Key);
 }