diff --git a/examples/gui/demo_listview_icon.c b/examples/gui/demo_listview_icon.c index b6e29862876dbe2de8a363935b71fffb3becdde3..1b6f8693f5fc841bdbccead6298a5c80a4a98fbe 100644 --- a/examples/gui/demo_listview_icon.c +++ b/examples/gui/demo_listview_icon.c @@ -337,7 +337,7 @@ rtgui_view_t* demo_listview_icon_view(rtgui_workbench_t* workbench) (const rt_uint8_t*)image_xpm, sizeof(image_xpm), RT_TRUE); if (exit_icon == RT_NULL) exit_icon = rtgui_image_create_from_mem("xpm", - (const rt_uint8_t*)exit_xpm, sizeof(image_xpm), RT_TRUE); + (const rt_uint8_t*)exit_xpm, sizeof(exit_xpm), RT_TRUE); /* Ìí¼Ó¶¯×÷°´Å¥ */ demo_view_get_rect(view, &rect); diff --git a/examples/gui/demo_view_notebook.c b/examples/gui/demo_view_notebook.c index f6a016dca846609a61df1ed0bfab5f359c68f75c..4ec6c7c4429392f089a581d3cf65f249b8805cc1 100644 --- a/examples/gui/demo_view_notebook.c +++ b/examples/gui/demo_view_notebook.c @@ -16,6 +16,15 @@ const static struct rtgui_listbox_item items[] = {"list #3", RT_NULL}, }; +const static struct rtgui_listbox_item items2[] = +{ + {"list #0", RT_NULL}, + {"list #1", RT_NULL}, + {"list #2", RT_NULL}, + {"new list #1", RT_NULL}, + {"new list #2", RT_NULL}, +}; + /* 创建用于演示notebook控件的视图 */ rtgui_view_t* demo_view_notebook(rtgui_workbench_t* workbench) { @@ -30,12 +39,15 @@ rtgui_view_t* demo_view_notebook(rtgui_workbench_t* workbench) /* 获得视图的ä½ç½®ä¿¡æ¯ */ demo_view_get_rect(view, &rect); - notebook = rtgui_notebook_create(&rect); + notebook = rtgui_notebook_create(&rect, RTGUI_NOTEBOOK_BOTTOM); /* view是一个container控件,调用add_child方法添加这个notebook控件 */ rtgui_container_add_child(RTGUI_CONTAINER(view), RTGUI_WIDGET(notebook)); box = rtgui_listbox_create(items, sizeof(items)/sizeof(struct rtgui_listbox_item), &rect); rtgui_notebook_add(notebook, "Tab 1", RTGUI_WIDGET(box)); + box = rtgui_listbox_create(items2, sizeof(items2)/sizeof(struct rtgui_listbox_item), &rect); + rtgui_notebook_add(notebook, "Tab 2", RTGUI_WIDGET(box)); + return view; }