public ColumnViewModel(IPGColumn column, DataTemplate headerTemplate, int columnIndex)
 {
     _columnIndex = columnIndex;
     _column = column;
     _headerTemplate = headerTemplate;
     _isHovered = false;
 }
Example #2
0
 public ColumnViewModel(IPGColumn column, DataTemplate headerTemplate, int columnIndex)
 {
     _columnIndex    = columnIndex;
     _column         = column;
     _headerTemplate = headerTemplate;
     _isHovered      = false;
 }
Example #3
0
 internal ItemViewModel(int colIndex, int rowIndex, int propIndex, int itemIndex,
                        IPGItem item, IPGColumn column, RowProperty property, PropertiesGridControlViewModel vm)
 {
     this._colIndex   = colIndex;
     this._rowIndex   = rowIndex;
     this._propIndex  = propIndex;
     this._itemIndex  = itemIndex;
     this._item       = item;
     this._column     = column;
     this._inEditMode = false;
     this._isHovered  = false;
     this._vm         = vm;
     this._property   = property;
 }
 internal ItemViewModel(int colIndex, int rowIndex, int propIndex, int itemIndex, 
     IPGItem item, IPGColumn column, RowProperty property, PropertiesGridControlViewModel vm)
 {
     this._colIndex = colIndex;
     this._rowIndex = rowIndex;
     this._propIndex = propIndex;
     this._itemIndex = itemIndex;
     this._item = item;
     this._column = column;
     this._inEditMode = false;
     this._isHovered = false;
     this._vm = vm;
     this._property = property;
 }