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; }
public PropertiesGridControl() { this.InitializeComponent(); this._viewModel = this.Resources["vm"] as PropertiesGridControlViewModel; }
public HoverManager(PropertiesGridControlViewModel vm) { this._vm = vm; }