使用wxAny作为wxControls的容器类

发布于 2024-10-11 13:31:45 字数 343 浏览 4 评论 0原文

wxAny类可以用来存储wxCheckBox类或其他基于wxControl的类吗?

wxPanel *panel = new wxPanel(this, wxID_ANY);
wxCheckBox test(panel, idMenuAbout + 1, wxT("Show title"), wxPoint(20, 20));
wxAny checkBox = test;

上面的代码生成错误 'wxCheckBoxBase& wxCheckBoxBase::operator=(const wxCheckBoxBase&)' 是私有的

谢谢。

Can the wxAny class be used to store a wxCheckBox class or other wxControl based classes?

wxPanel *panel = new wxPanel(this, wxID_ANY);
wxCheckBox test(panel, idMenuAbout + 1, wxT("Show title"), wxPoint(20, 20));
wxAny checkBox = test;

The above code generates the error 'wxCheckBoxBase& wxCheckBoxBase::operator=(const wxCheckBoxBase&)’ is private

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

转瞬即逝 2024-10-18 13:31:45

问题不在于 wxAny ,而在于 wxCheckBoxBase 不可复制:

wx/checkbox.h

class WXDLLEXPORT wxCheckBoxBase : public wxControl

protected:

     DECLARE_NO_COPY_CLASS(wxCheckBoxBase)
}

wx/defs.h

/*  --------------------------------------------------------------------------- */
/*  macro to define a class without copy ctor nor assignment operator */
/*  --------------------------------------------------------------------------- */

#define DECLARE_NO_COPY_CLASS(classname)        \
private:                                    \
    classname(const classname&);            \
    classname& operator=(const classname&);

The problem is not with wxAny but with the fact that wxCheckBoxBase is made non-copyable:

wx/checkbox.h

class WXDLLEXPORT wxCheckBoxBase : public wxControl

protected:

     DECLARE_NO_COPY_CLASS(wxCheckBoxBase)
}

wx/defs.h

/*  --------------------------------------------------------------------------- */
/*  macro to define a class without copy ctor nor assignment operator */
/*  --------------------------------------------------------------------------- */

#define DECLARE_NO_COPY_CLASS(classname)        \
private:                                    \
    classname(const classname&);            \
    classname& operator=(const classname&);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文