//========================================================================================================================================
		//  PUBLIC CLASS PROPERTIES
		//========================================================================================================================================
		//========================================================================================================================================
		//  Constructor
		//========================================================================================================================================
		/// <summary>
		/// Initializes a new instance of the <see cref="TableViewSource"/> class.
		/// </summary>
		public TableViewSource ()
		{
			this.dpc = new DatePickerCell ();
			this.dsc = new DateShowerCell ();
			dpc.didUpdateDatePicker += dsc.updateCellText;
			heightAtIndexPath = new Foundation.NSMutableDictionary ();
			this.showDatePicker = false;
			numRows = 2;
		}
Example #2
0
 //========================================================================================================================================
 //  PUBLIC CLASS PROPERTIES
 //========================================================================================================================================
 //========================================================================================================================================
 //  Constructor
 //========================================================================================================================================
 /// <summary>
 /// Initializes a new instance of the <see cref="TableViewSource"/> class.
 /// </summary>
 public TableViewSource()
 {
     this.dpc = new DatePickerCell();
     this.dsc = new DateShowerCell();
     dpc.didUpdateDatePicker += dsc.updateCellText;
     heightAtIndexPath        = new Foundation.NSMutableDictionary();
     this.showDatePicker      = false;
     numRows = 2;
 }