摘要:
1. CListCtrl 风格 LVS_ICON: 为每个item显示大图标 LVS_SMALLICON: 为每个item显示小图标 LVS_LIST: 显示一列带有小图标的item LVS_REPORT: 显示item详细资料 直观的理解:windows资源管理器,“查看”标签下的“大图标,小图标,列表,详细资料”2. 设置listctrl 风格及扩展风格 LONG lStyle; lStyle = GetWindowLong(m_list.m_hWnd, GWL_STYLE);//获取当前窗口style lStyle &= ~LVS_TYPEMASK; //清除显示方式位 lSty 阅读全文
摘要:
multimap的特点为key是可以重复的,而普通map中的key是不可以重复的。声明multimap<int, CString>mapTest;multimap<int, CString>::iterator pIter;typedef multimap<int, CString>::iterator it;插入,跟普通map相似 mapTest.insert(PairTest(1, _T("a"))); mapTest.insert(PairTest(1, _T("b"))); mapTest.insert(Pai 阅读全文
摘要:
std::locale loc = std::locale::global(std::locale("")); ofstream testOFstream("C:\\测试.txt"); if (testOFstream.is_open()) { testOFstream<<"this is a test\n"; testOFstream<<"this is another test"; testOFstream.close(); }std::locale::global(std::local 阅读全文