Represents a data bondable, customized view of two dimensional array
Inheritance: IBindingList
 /// <summary>
 ///   Initializes a new instance of the <see cref="ArrayRowView"/> class.
 /// </summary>
 internal ArrayRowView(ArrayDataView owner, int index)
 {
     this.owner    = owner;
     this.rowIndex = index;
     this.error    = String.Empty;
 }
 /// <summary>
 ///   Initializes a new instance of the <see cref="ArrayRowView"/> class.
 /// </summary>
 internal ArrayRowView(ArrayDataView owner, int index)
 {
     this.owner = owner;
     this.rowIndex = index;
     this.error = String.Empty;
 }
Example #3
0
 internal ArrayRowView(ArrayDataView owner, int index)
 {
     _owner = owner;
     _index = index;
 }
Example #4
0
 /// <summary>
 ///   Initializes a new instance of the <see cref="ArrayRowView"/> class.
 /// </summary>
 ///
 public ArrayRowView(ArrayDataView owner, int index)
 {
     this.owner    = owner;
     this.rowIndex = index;
 }
Example #5
0
 /// <summary>
 ///   Initializes a new instance of the <see cref="ArrayRowView"/> class.
 /// </summary>
 /// 
 public ArrayRowView(ArrayDataView owner, int index)
 {
     this.owner = owner;
     this.rowIndex = index;
 }