标签:bsp window style 窗口 hlist span 选中 code com
// 创建List控件
HWND hListView = CreateWindow(WC_LISTVIEW ,/*listview 宏的名字*/
L"" ,/*窗口标题*/
WS_CHILD | WS_VISIBLE | LVS_REPORT | WS_BORDER ,/*窗口风格*/
0 , 0 , 200 , 200 ,/*窗口大小和位置*/
- hWnd ,/*父窗口*/
(HMENU)0x1000 ,/*ID*/
0 , 0
);
// 设置ListVeiw的扩展风格
ListView_SetExtendedListViewStyleEx(hListView ,
0,
LVS_EX_FULLROWSELECT/*整行选中*/
);
标签:bsp window style 窗口 hlist span 选中 code com
原文地址:http://www.cnblogs.com/zero0ne/p/438c2bb05d636d4898880883f4526483.html