Пример #1
0
 public LanguageTableViewSource(MonoTouch.UIKit.UITableView tableView, IReactiveNotifyCollectionChanged <LanguageItemViewModel> collection)
     : base(tableView, collection, LanguageTableViewCell.Key, 44f)
 {
     tableView.RegisterClassForCellReuse(typeof(LanguageTableViewCell), LanguageTableViewCell.Key);
 }
Пример #2
0
 public ReleasesTableViewSource(MonoTouch.UIKit.UITableView tableView, IReactiveNotifyCollectionChanged <ReleaseItemViewModel> collection)
     : base(tableView, collection, ReleaseTableViewCell.Key, 44.0f)
 {
     tableView.RegisterClassForCellReuse(typeof(ReleaseTableViewCell), ReleaseTableViewCell.Key);
 }
Пример #3
0
 public SourceContentTableViewSource(MonoTouch.UIKit.UITableView tableView, IReactiveNotifyCollectionChanged <SourceItemViewModel> collection)
     : base(tableView, collection, SourceContentCellView.Key, 44.0f)
 {
     tableView.RegisterClassForCellReuse(typeof(SourceContentCellView), SourceContentCellView.Key);
 }