作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下代码:
int column_width = 100;
long indx1 = alist->InsertColumn(0, L"用户名", wxLIST_FORMAT_LEFT, column_width);
long indx2 = alist->InsertColumn(1, L"User Id", wxLIST_FORMAT_LEFT, column_width);
long itemIndex1 = alist->InsertItem(indx1, L"John Smith", -1);
alist->SetItem(indx1, 1, L"jsmith");
我希望看到两列的标题是用户名和用户 ID,第一行的值是“John Smith”和“jsmith”。相反,我只在用户名列下看到“John Smith”,但在用户 ID 列下什么也没有。这是显示结果的快照的链接:http://drop.io/agtyt6s
谢谢!
最佳答案
这是一个显示两列的最小示例。请注意,我在 SetItem 方法中使用了 InsertItem 方法返回的索引项。
#include <wx/wx.h>
class Frame : public wxFrame
{
public:
Frame():
wxFrame(NULL, wxNewId(), _("App"))
{
wxBoxSizer * box = new wxBoxSizer(wxVERTICAL);
wxListCtrl * listCtrl = new wxListCtrl(this, wxNewId(), wxDefaultPosition, wxDefaultSize, wxLC_REPORT);
listCtrl->InsertColumn(0, _("User Name"));
listCtrl->InsertColumn(1, _("User ID"));
long index = listCtrl->InsertItem(0, _("John Smith"));
listCtrl->SetItem(index, 1, _("jsmith"));
box->Add(listCtrl, 1, wxEXPAND, 0);
SetSizer(box);
box->SetSizeHints(this);
Show(true);
}
};
class App : public wxApp
{
bool OnInit()
{
SetTopWindow(new Frame());
}
};
IMPLEMENT_APP(App);
关于c++ - 如何在 wxWidgets(C++ 代码)中使用 wxListCtrl 向第二列添加值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2962057/
我是一名优秀的程序员,十分优秀!