mirror of
https://github.com/lvgl/lvgl.git
synced 2026-05-31 16:27:03 +08:00
feat(xml): add spinbox support (#8957)
Co-authored-by: Liam Howatt <30486941+liamHowatt@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
89d7d11a13
commit
1623876507
@@ -0,0 +1,17 @@
|
||||
<!--
|
||||
Example
|
||||
<lv_spinbox digit_count="5" dec_point_pos="3" value="12345"/>
|
||||
-->
|
||||
|
||||
<widget>
|
||||
<api>
|
||||
<prop name="value" type="int"/>
|
||||
<prop name="rollover" type="bool"/>
|
||||
<prop name="digit_count" type="int"/>
|
||||
<prop name="dec_point_pos" type="int"/>
|
||||
<prop name="min_value" type="int"/>
|
||||
<prop name="max_value" type="int"/>
|
||||
<prop name="step" type="int"/>
|
||||
<prop name="bind_value" type="subject" help="Connect a subject to the spinbox's value"/>
|
||||
</api>
|
||||
</widget>
|
||||
Reference in New Issue
Block a user