我正面临在笔记本旁边实施控件的布局问题。
问题是,笔记本电脑及其旁边的控件按预期正确对齐,但笔记本电脑中窗口上的控件放在一起,就像没有使用sizer一样。
我很感激如何解决这个问题。
编辑:提供示例代码来演示问题
Header test.h:
class mainwindow : public wxFrame{
public:
mainwindow(const wxString &title);
wxWindow *notebookwindow[2];
wxTextCtrl *onnotebook[2];
wxNotebook *notebook;
wxTextCtrl *onmain[2];
wxBoxSizer *box[4];
};
class myapp : public wxApp {
public:
virtual bool OnInit();
};
TEST.CPP
// program test
#include <iostream>
#include <stdlib.h>
#include <string>
#include <map>
#include <typeinfo>
#include <fstream>
#include <vector>
#include <wx/wx.h>
#include <wx/textctrl.h>
#include <wx/notebook.h>
#include <wx/stattext.h>
#include <wx/sizer.h>
#include "test.h"
mainwindow :: mainwindow (const wxString & title)
: wxFrame(NULL, wxID_ANY, title, wxDefaultPosition, wxSize(1000, 800)){
notebook = new wxNotebook(this, wxID_ANY, wxDefaultPosition, wxSize(200, 200));
notebookwindow[0] = new wxWindow(notebook, wxID_ANY);
notebookwindow[1] = new wxWindow(notebook, wxID_ANY);
notebook->AddPage(notebookwindow[0], wxT("This"));
notebook->AddPage(notebookwindow[1], wxT("That"));
onmain[0] = new wxTextCtrl(this, wxID_ANY, wxT("on main 1"));
onmain[1] = new wxTextCtrl(this, wxID_ANY, wxT("on main 2"));
onnotebook[0] = new wxTextCtrl(notebookwindow[0], wxID_ANY, wxT("on notebook 1"));
onnotebook[1] = new wxTextCtrl(notebookwindow[0], wxID_ANY, wxT("on notebook 2"));
box[0] = new wxBoxSizer(wxVERTICAL);
box[1] = new wxBoxSizer(wxVERTICAL);
box[2] = new wxBoxSizer(wxHORIZONTAL);
box[0]->Add(onmain[0]);
box[0]->Add(onmain[1]);
box[1]->Add(onnotebook[0]);
box[1]->Add(onnotebook[1]);
box[2]->Add(box[0]);
box[2]->Add(notebook);
notebookwindow[0]->SetSizer(box[1]);
this->SetSizer(box[2]);
}
bool myapp::OnInit(){
mainwindow *mainfr = new mainwindow( wxT("test"));
mainfr->Show(true);
return true;
}
IMPLEMENT_APP(myapp);
和makefile
main=test.o
flags=-std=c++11 -g
folders=tables sources
gui=`wx-config --cxxflags --libs`
all: $(addprefix doto/,$(main))
$(CXX) $(flags) $^ $(gui) -o test.exe
doto/%.o:%.cpp %.h
$(CXX) $(flags) $< $(gui) -c -o doto/$(notdir $(<:.cpp=.o))
.PHONY:clean
clean:
rm doto/*.o *.exe
答案 0 :(得分:0)
看起来wxNotebook
喜欢它们的页面在添加时完全组装。所以,移动
notebook->AddPage(notebookwindow[0], wxT("This"));
notebook->AddPage(notebookwindow[1], wxT("That"));
之前
this->SetSizer(box[2]);
解决了这个问题。
另一个解决方法是在笔记本页面完全设置后强制在笔记本页面上进行布局,也就是说,不更改原始代码中的任何其他内容,添加
notebookwindow[0]->Layout();
之前
this->SetSizer(box[2]);
我不确定这种行为是否应该被视为错误。我希望在顶级父级上调用Layout()
可以在任何地方传播并避免出现这样的问题,但在这种情况下,它看起来并不像那样。
我现在没有时间进一步调查;如果我们能得到VZ,那就太棒了。对此我的意见。