gpt4 book ai didi

c++ - wxScrolledWindow 添加和删除元素

转载 作者:太空宇宙 更新时间:2023-11-04 13:12:39 25 4
gpt4 key购买 nike

我有一个充满元素(图片)的 wxScrolledWindow 对象(每个元素都添加了使用 dc.paint 的 ThumbNail 类)。我想用新的元素动态更改一次(不是相同的数字)(用户更改文件夹)。

我怎样才能清空 wxScrolledWindow 对象中的所有项目,并把新的一次放回去?然后重置滚动条。

    _ScrolThumbs = new wxScrolledWindow(_pMainPanel);

wxGridSizer *m_swSizer = new wxGridSizer(1,1,0);
_ScrolThumbs->SetSizer(m_swSizer); // Sets the window to have the given layout sizer.
std::vector<ThumbNail*> _Thumbs;
for(int i=0;i < FilePr::Instance()->GetNumThumbs() ;i++)
{
_Thumbs.push_back(new ThumbNail(_ScrolThumbs, PicName[i]));
_ScrolThumbs ->GetSizer()->Add (_Thumbs[i], 1, wxALL|wxALIGN_CENTER_VERTICAL, 5);
}

然后我尝试这样做(当按下按钮时):

    wxWindowList& lst = _ScrolThumbs->GetChildren();
//if (!lst.empty())
std::cout << lst.size() << '\n';
while(!lst.empty()) //for(int i = 0; i < lst.size(); i++) //lst.size()
{
wxWindow *wnd = lst.back();
wnd->Destroy();
}

但是像我上面那样放回新元素是行不通的...

知道如何执行此操作或在网络上寻求帮助吗?谢谢!

最佳答案

_ScrolThumbs->GetSizer()->Clear(true);
// or
_ScrolThumbs->DestroyChildren();

关于c++ - wxScrolledWindow 添加和删除元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39056288/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com