Lets say I have three layers (from bottom to top),
- InkCanvas (the lowest z level),
- InkCanvas (used for writing),
- InkCanvas ( the highest z level, on top, used for drawing).
In MVVM (WPF), how can capture of strokes from the highest z-level be moved to the lowest level z-level? (When moved, the bounding rectangle of the strokes is to be filled with a Yellow color. That is, the background color of only the area enclosing the strokes is to be colored yellow--the rest of the InkCanvas is to remain transparent.) Additionally, I wish to keep the strokes at the same coordinates in the target InkCanvas.
TIA