C++
一种通用的高级编程语言,作为 C 编程语言的扩展而创建,除了用于低级别内存操作的功能外,还具有面向对象、泛型和功能性等特点。
153 个问题
我把代码给你,你看看怎么回事?GITHUB网址:https://github.com/lixiang1234/TEST
您好,
修改代码,去除m_wndColorBarFrame,m_wndColorBarFrame2
// Create regular color bar:
CRect rectColorBar;
//m_wndColorBarFrame.GetClientRect(&rectColorBar);
//m_wndColorBarFrame.MapWindowPoints(this, &rectColorBar);
m_wndColorBar.SetHorzMargin(0);
m_wndColorBar.SetVertMargin(0);
m_wndColorBar.EnableOtherButton(_T("Other..."));
m_wndColorBar.CreateControl(this, rectColorBar, IDC_COLORBAR, 5 /* columns */);
m_wndColorBar.SetColor(RGB(0, 0, 0));
// Create regular color bar with the custom palette:
//m_wndColorBarFrame2.GetClientRect(&rectColorBar);
//m_wndColorBarFrame2.MapWindowPoints(this, &rectColorBar);
如果答案是正确的,请点击“接受答案”并点赞。 如果您对此答案还有其他疑问,请点击“评论”。 注意:如果您想接收相关电子邮件,请按照我们的文档中的步骤启用电子邮件通知 此线程的通知。