Cosmos/source2/VSIP/Cosmos.VS.Windows/DebuggerUC.cs
EdwardNutting_cp 407e5102eb Bug fixes:
- Single-level fields now work.
 - "This" in locals window now works - this and #1 were related to SQLite issue that was just a bad line of code
 - Arguments/Stack window now displays correct values. Used to display same value for both args and stack mistakenly.
2013-12-26 16:16:54 +00:00

24 lines
579 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Threading;
using System.Windows.Controls;
namespace Cosmos.VS.Windows {
public class DebuggerUC : UserControl {
protected byte[] mData = new byte[0];
public virtual void Update(string aTag, byte[] aData) {
Dispatcher.Invoke(DispatcherPriority.Normal,
(Action)delegate() {
mData = aData;
DoUpdate(aTag);
}
);
}
protected virtual void DoUpdate(string aTag) {
}
}
}