gpt4 book ai didi

c++ - 为什么打开双缓冲会破坏我的列表控件并调整窗口大小然后修复它?

转载 作者:行者123 更新时间:2023-11-28 04:08:09 25 4
gpt4 key购买 nike

我在 Windows 10 上的一个编程项目中使用报表样式的 wxListCtrl,使用的是 Visual Studio 2017。我注意到当程序第一次启动时,有一些奇怪的伪像:列之间的垂直线不随当我用鼠标调整它们大小时的标题。此外,当我拖动滚动条时,滚动条不会移动,但当我释放鼠标按钮时,列表会跳转到该位置。但是,一旦我调整窗口大小,一切都很好。

将程序缩减为最小示例后,我发现为包含列表控件的帧关闭双缓冲可以解决所有问题。但我真的不明白为什么。谁能给我解释一下?

#include <wx/wx.h>
#include <wx/listctrl.h>

class MainWindow : public wxFrame
{

public:
MainWindow();
void updateWidgets();


private:
wxListCtrl *listCtrl;
void initWidgets();

};

MainWindow::MainWindow()
{
// ****************************************************************
// Set window properties and init the widgets.
// ****************************************************************

wxFrame::Create(NULL, wxID_ANY, wxT("wxListCtrl Issue"), wxDefaultPosition,
wxDefaultSize, wxCLOSE_BOX | wxMINIMIZE_BOX | wxMAXIMIZE_BOX |
wxSYSTEM_MENU | wxCAPTION | wxRAISED_BORDER | wxRESIZE_BORDER);

// Comment the following line to fix the list control, but why?
this->SetDoubleBuffered(true);

initWidgets();
}

void MainWindow::initWidgets()
{

listCtrl = new wxListCtrl(this, wxID_ANY, wxDefaultPosition,
wxDefaultSize, wxLC_REPORT);
listCtrl->InsertColumn(0, wxT("Col 0"), wxLIST_FORMAT_LEFT, 50);
for (int i = 0; i < 60; i++)
{
long index = listCtrl->InsertItem(0, wxT("Item"));
}

}

class wxListCtrl_Issue : public wxApp
{
public:
virtual bool OnInit();
};

bool wxListCtrl_Issue::OnInit()
{
MainWindow *mainWindow = new MainWindow();
mainWindow->Show(true);
return true;
}

wxIMPLEMENT_APP(wxListCtrl_Issue);

最佳答案

一般来说,你不应该干涉原生控件的绘制,wxListCtrl在MSW下是原生的。此外,它已经使用自己的特定机制进行双缓冲 (LVS_EX_DOUBLEBUFFER),因此意外地为它设置 WS_EX_COMPOSITED 一点也不奇怪(从控制点 View )打破它。

即答案很简单:只是不要为它调用 SetDoubleBuffered(),也不要调用任何其他 native 控件。

关于c++ - 为什么打开双缓冲会破坏我的列表控件并调整窗口大小然后修复它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58335175/

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