update docs

This commit is contained in:
lixianjing 2020-05-27 10:56:06 +08:00
parent 77de2bc1bb
commit 4ddeb897bc
3 changed files with 30 additions and 0 deletions

View File

@ -56,6 +56,7 @@
* [如何在主题文件中写控件布局参数](how_to_write_layout_params_in_style.md)
* [如何开启按键音](how_to_enable_key_touch_sound.md)
* [如何更新拼音输入法数据](how_to_update_gpinyin_data.md)
* [如何定制 combo_box 控件中按钮的风格和大小](how_to_customize_combo_boxox_button.md)
* [如何集成第三方库](https://github.com/zlgopen/awtk-hello/blob/master/docs/how_to_integrate_3rd_libs.md)
* [动态库与静态库](shared_static.md)

View File

@ -1,4 +1,7 @@
# 最新动态
* 2020/05/27
* 增加文档《如何定制 combo_box 控件中按钮的风格和大小》
* 2020/05/26
* 完善 widget_dispatch。
* 完善 scroll view 事件处理。

View File

@ -0,0 +1,26 @@
# 如何定制 combo_box 控件中按钮的风格和大小
## 定制 combo_box 控件中按钮的风格
打开 style 文件,找到按钮的 style修改名为 combobox_down 的 style 即可。
```xml
<button>
<style name="combobox_down" border_color="#a0a0a0">
<normal bg_color="#f0f0f0" icon="arrow_down_n"/>
<pressed bg_color="#c0c0c0" icon="arrow_down_p"/>
<over bg_color="#e0e0e0" icon="arrow_down_o"/>
</style>
</button>
```
## 定制 combo_box 控件中按钮的大小
此时需要在 combo_box 控件中,增加一个按钮子控件,可以设置它的大小、位置和 style 的名称。
```xml
<combo_box left_margin="6" x="10" y="5" w="200" h="30" text="left" options="left;center;right;">
<button style="combobox_down" x="right:5" y="middle" w="20" h="20"/>
</combo_box>
```