问题记录

1.当添加一个新类后,在由ClassWizard生成对象时注意要由该新类派生.手工不容易出错.

2. 获取当前焦点的函数:

CPoint cp;
GetCursorPos(
& cp);

3.获取客户区大小

CRect    rect;
GetClientRect(rect);    
m_List.MoveWindow(rect) ;

4,

CString  cs;
cs.Format(
" 中华人民共和国%s " , p -> text);

你可能感兴趣的:(问题记录)