Window (窗口)(lv_win)
Overview(概述)
显示原文
The Window is container-like Widget built from a header with title and buttons and a content area.
Window(窗口)是一个类似容器的对象,由带有标头、按钮和内容区域构建而成。
Parts and Styles(部分和样式)
显示原文
The Window is built from other widgets so you can check their documentation for details:
Background: Base Widget
Header on the background: Base Widget
Title on the header: Label (标签)(lv_label)
Buttons on the header: Button(按钮) (lv_button)
Content area on the background: Base Widget
窗口控件是由其他控件构建的,因此可以查看它们的文档以获取详细信息:
背景:Base Widget
背景标头:Base Widget
标头上的标题:Label (标签)(lv_label)
标头上的按钮: Button(按钮) (lv_button)
背景内容区:Base Widget
Usage(用法)
Create a Window(创建一个窗口)
显示原文
lv_win_create(parent, header_height) creates a Window with an empty header.
lv_win_create(parent, header_height) 创建一个标头为空的窗口。
Get the parts(获取部分)
显示原文
lv_win_get_header(win) returns a pointer to the header, lv_win_get_content(win) returns a pointer to the content container to which the content of the window can be added.
lv_win_get_header(win) 返回一个指向标头的指针, lv_win_get_content(win) 返回一个指向可以在窗口添加内容的容器指针。
Events(事件)
显示原文
No special events are sent by the windows Widgets, however events can be added
manually to the return value of lv_win_add_button()
.
Learn more about Events(事件).
窗口不会发送特殊事件,但是可以手动将事件添加到 lv_win_add_button()
的返回值中。
了解有关 Events(事件) 的更多信息。
Keys(按键)
窗口不处理任何 按键 。
了解有关 Keys(按键) 的更多信息。