+void MyFrame::OnFocusLast(wxCommandEvent& WXUNUSED(event))
+{
+ long index = m_listCtrl->GetItemCount() - 1;
+ if ( index == -1 )
+ {
+ return;
+ }
+
+ m_listCtrl->SetItemState(index, wxLIST_STATE_FOCUSED, wxLIST_STATE_FOCUSED);
+ m_listCtrl->EnsureVisible(index);
+}
+