WinSDK方式设置ListView控件指定位置数据

HWND hWnd=GetDlgItem(hDlg,IDC_INFOLIST);//获取控件句柄
ListView_SetItemText(hWnd,i,j,"数据数据");//设置第i行j列的单元格内容

ListView_SetItemText

VOID WINAPI ListView_SetItemText(
    HWND hwnd,
    int         i,
    int         iSubItem,
    LPCSTR pszText
);

Changes the text of a list view item or subitem. You can use this macro or send the LVM_SETITEMTEXT message explicitly. 

No return value. 

hwnd 
    Handle to the list view control. 

    Index of the list view item. 
iSubItem 
    Index of the subitem. To set the item label, set iSubItem to zero. 
pszText 
    Address of a null-terminated string that contains the new text. 
    This parameter can be LPSTR_TEXTCALLBACK to indicate a callback item for which the parent window stores the text. In this case, the list view control sends the parent an LVN_GETDISPINFO notification message when it needs the text. 
    This parameter can be NULL. 



你可能感兴趣的:(ListView,list,String,callback,winapi)