wxbListCtrl::wxbListCtrl(
wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size):
- wxListCtrl(parent, id, pos, size,wxLC_REPORT) {
+ wxListCtrl(parent, id, pos, size, wxLC_REPORT | wxSUNKEN_BORDER) {
}
wxbListCtrl::~wxbListCtrl() {}
info.SetText("Group");
info.SetAlign(wxLIST_FORMAT_RIGHT);
list->InsertColumn(6, info);
-
+
secondSizer->AddGrowableCol(1);
secondSizer->AddGrowableRow(0);
jobChoice->Enable(false);
+ for (int i = 0; i < 7; i++) {
+ list->SetColumnWidth(i, 70);
+ }
+
working = false;
}
wxbTreeCtrl::wxbTreeCtrl(
wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size):
- wxTreeCtrl(parent, id, pos, size) {
+ wxTreeCtrl(parent, id, pos, size, wxSUNKEN_BORDER | wxTR_HAS_BUTTONS) {
}
wxbTreeCtrl::~wxbTreeCtrl() {}