gpt4 book ai didi

c++ - wxRichTextCtrl 不工作?

转载 作者:行者123 更新时间:2023-11-28 02:45:00 25 4
gpt4 key购买 nike

全局 *.h 范围:

#include <wx/sizer.h>
#include <wx/window.h>
#include <wx/richtext/richtextctrl.h>

*.cpp文件:

wxTextCtrl* daTextCtrl;
wxBoxSizer *sizer = new wxBoxSizer(wxHORIZONTAL);

wxFrame *frame2 = new wxFrame(NULL, -1, wxT("Dialog Title"), wxPoint(50, 50), wxSize(500, 500));
frame2->Show(true);

wxWindow *windo = new wxWindow(frame2, wxID_ANY, wxDefaultPosition, wxSize(500,500));

daTextCtrl = new wxRichTextCtrl(windo,
wxID_ANY,
_T("a"),
wxDefaultPosition,
wxSize(350,100),
wxVSCROLL);



windo->Show();

错误:

undefined reference to `wxRichTextCtrl::wxRichTextCtrl(wxWindow*, int, wxString const&, wxPoint const&, wxSize const&, long, wxValidator const&, wxString const&)'|

最佳答案

您需要显式链接富文本库,它不包含在您可能使用的 wx-config --libs 输出的默认库列表中。 IE。你需要 wx-config --libs std,richtext

关于c++ - wxRichTextCtrl 不工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24714215/

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