我在重载的CListCtrl类里加入了一个删除函数:void CMylist::OnKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags) 
{
// TODO: Add your message handler code here and/or call default
if (nChar==VK_DELETE)
{
int i=this->GetSelectionMark();
this->DeleteItem(i);
}
CListCtrl::OnKeyUp(nChar, nRepCnt, nFlags);
}
请问如何通知使用该控件的对话框类该控件删除的条目的信息呢,如条目名称?