I have a CView
that acts as a placeholder for several Ctrl's stacked vertically so as the occupy all available space. What I wish to do is grab a horizontal boundary with the mouse and drag it up or down to resize Ctrl height.
The problem being that the child Ctrl's of the CView
intercept the mouse messages and not the CView
parent window (WM_LBUTTONDOWN
, WM_MOUSEMOVE
etc). The Ctrl's also handle these messages for unrelated editing requirements.
Would anyone be able to offer advice or supply a reference to possible solution(s) to this sizing/editing requirement. The situation is some what similar to the resource editor in Visual Studio. Only I wish to edit in a live environment.