public void UpdateData(IMemoryView memory, UInt32 columns) { this.mMemory = memory; this.ColumnsCount = columns; if (this.CollectionChanged != null) { this.CollectionChanged.Invoke(this, new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset)); } }
public MemoryModelRecord(IMemoryView memory, UInt32 index, UInt32 count) { this.mMemory = memory; this.mIndex = index; this.mCount = count; }
public MemoryModelRecordSubItem(IMemoryView memory, UInt32 index) { this.mMemory = memory; this.Index = index; }
public MemoryModel() { this.ColumnsCount = 0; this.mMemory = null; }