wtl 的CSplitterWindow 左右分割,想固定右边的大小,
但已修改窗口大小 分割条就跑到左边去 导致左边窗口不显示了 
请高手帮组解决
// Create the splitter window
const DWORD dwSplitStyle = WS_CHILD | WS_VISIBLE |  WS_CLIPCHILDREN | WS_CLIPSIBLINGS, dwSplitExStyle = WS_EX_CLIENTEDGE;
m_wndVertSplit.Create ( *this, rcDefault, NULL,dwSplitStyle, dwSplitExStyle );
// Set the splitter as the client area window, and resizethe splitter to match the frame size. 
m_VideoView.Create(m_wndVertSplit);//是一个对话框
m_VideoView.ShowWindow(SW_SHOW);
m_TextChatView.Create(m_wndVertSplit,rcDefault,NULL);
m_TextChatView.ShowWindow(SW_SHOW);
m_wndVertSplit.SetSplitterPanes ( m_TextChatView, m_VideoView);
m_hWndClient = m_wndVertSplit;
UpdateLayout();  
m_wndVertSplit.SetSplitterPos(473);//设置分隔条的位置,表示分割条距离分隔窗口的上边界(水平分隔窗口)或左边界(垂直分隔窗口)有多少个象素点


m_wndVertSplit.SetSplitterExtendedStyle(SPLIT_RIGHTALIGNED);