CWnd::OnSizing
Visual Studio 2010
The framework calls this member function to indicate that the user is resizing the rectangle.
afx_msg void OnSizing( UINT nSide, LPRECT lpRect );
By processing this message, an application can monitor the size and position of the drag rectangle and, if needed, change its size or position.
Note
|
|---|
|
This member function is called by the framework to allow your application to handle a Windows message. The parameters passed to your function reflect the parameters received by the framework when the message was received. If you call the base-class implementation of this function, that implementation will use the parameters originally passed with the message and not the parameters you supply to the function. |
void CSplitChildFrm::OnSizing(UINT fwSide, LPRECT pRect) { CMDIChildWnd::OnSizing(fwSide, pRect); // Resize the splitter window in the frame. m_wndSplitter is of // type CSplitterWnd int nWidth = (pRect->right) - (pRect->left); m_wndSplitter.SetColumnInfo(0, nWidth / 2, 10); m_wndSplitter.SetColumnInfo(1, nWidth / 2, 10); m_wndSplitter.RecalcLayout(); }
Note