added icons to virtual list mode

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16809 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-08-27 09:38:11 +00:00
parent 81764280af
commit 277707731e

View File

@@ -491,6 +491,8 @@ void MyFrame::OnVirtualView(wxCommandEvent& WXUNUSED(event))
void MyFrame::InitWithVirtualItems()
{
m_listCtrl->SetImageList(m_imageListSmall, wxIMAGE_LIST_SMALL);
m_listCtrl->InsertColumn(0, _T("First Column"));
m_listCtrl->InsertColumn(1, _T("Second Column"));
m_listCtrl->SetColumnWidth(0, 150);
@@ -774,6 +776,8 @@ void MyListCtrl::OnActivated(wxListEvent& event)
void MyListCtrl::OnFocused(wxListEvent& event)
{
LogEvent(event, _T("OnFocused"));
event.Skip();
}
void MyListCtrl::OnListKeyDown(wxListEvent& event)