1. wxListBox horz scrollbar fixes: now disappears when items are deleted
2. wxListBox quick searching on key press implemented git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/wxUNIVERSAL@8582 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -370,8 +370,8 @@ LboxTestFrame::LboxTestFrame(const wxString& title)
|
||||
wxSizer *sizerMiddle = new wxStaticBoxSizer(box2, wxVERTICAL);
|
||||
|
||||
wxSizer *sizerRow = new wxBoxSizer(wxHORIZONTAL);
|
||||
btn = new wxButton(panel, LboxTest_Add, _T("&Add panel string"));
|
||||
m_textAdd = new wxTextCtrl(panel, LboxTest_AddText, _T("test string 0"));
|
||||
btn = new wxButton(panel, LboxTest_Add, _T("&Add this string"));
|
||||
m_textAdd = new wxTextCtrl(panel, LboxTest_AddText, _T("test item 0"));
|
||||
sizerRow->Add(btn, 0, wxRIGHT, 5);
|
||||
sizerRow->Add(m_textAdd, 1, wxLEFT, 5);
|
||||
sizerMiddle->Add(sizerRow, 0, wxALL | wxGROW, 5);
|
||||
|
||||
Reference in New Issue
Block a user