本文整理汇总了C++中ListView::add方法的典型用法代码示例。如果您正苦于以下问题:C++ ListView::add方法的具体用法?C++ ListView::add怎么用?C++ ListView::add使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ListView
的用法示例。
在下文中一共展示了ListView::add方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main(int argc, char **argv)
{
Form myForm("cppfl サンプル", 640, 480);
myForm.fixsize(false); // サイズ変更可能
Spliter spl(0);
Spliter spl2(0, false); // 横分割
TextBox t1("あああ");
TextBox t2("test2",0,true);
TextBox t3("test3",0,true);
ListView lv;
char *cols[] = {"name","aaa2"};
lv.addCol(cols,2);
char *s[] = {"abc","222"};
lv.add(s,2);
spl.add(&t1);
spl.add(&spl2);
spl2.add(&t2);
spl2.add(&lv);
spl.size(320,240);
spl.align(Widget::FIT);
myForm.add(spl,0,30);
// 検索ボックス
TextBox w("");
w.size(240,24);
myForm.add(w,4,2);
// 検索ボタン
Button findb("find");
myForm.add(findb,250,2);
wait(myForm);
return 0;
}