Esempio n. 1
0
        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));
            }
        }
Esempio n. 2
0
 public MemoryModelRecord(IMemoryView memory, UInt32 index, UInt32 count)
 {
     this.mMemory = memory;
     this.mIndex  = index;
     this.mCount  = count;
 }
Esempio n. 3
0
 public MemoryModelRecordSubItem(IMemoryView memory, UInt32 index)
 {
     this.mMemory = memory;
     this.Index   = index;
 }
Esempio n. 4
0
 public MemoryModel()
 {
     this.ColumnsCount = 0;
     this.mMemory      = null;
 }