CListCtrl::GetBkImage是一種函式,功能是檢索列表視圖控制項的當前背景圖像。
函式原型,參數,返回值,備註,示例,
函式原型
BOOL GetBkImage( LVBKIMAGE* plvbkImage ) const;
參數
plvbkImage :對包含列表視圖中當前背景圖像 LVBKIMAGE 結構的指針。
返回值
如果成功返回非零;否則為零。
備註
此方法實現Win32宏,ListView_GetBkImage的行為,如 Windows SDK所述。
示例
LVBKIMAGE bki;
// If no background image is set for the list view control use
// the Microsoft homepage image as the background image.
// If no background image is set for the list view control use
// the Microsoft homepage image as the background image.
if (m_myListCtrl.GetBkImage(&bki) && (bki.ulFlags == LVBKIF_SOURCE_NONE))
{
m_myListCtrl.SetBkImage(_T("1.gif"),TRUE);
}