awtk/docs/how_to_edit_ip_addr.md

23 lines
418 B
Markdown
Raw Permalink Normal View History

2020-06-26 18:03:15 +08:00
# 如何用 edit 控件编辑 IP 地址
用 edit 控件编辑 IP 地址,将 edit 的 input\_type 指定为"ipv4"即可。
* 基本用法
示例:
```xml
<edit w="70%" text="192.168.1.1" tips="ipv4" input_type="ipv4"/>
```
* 启用自动修正功能
示例:
```xml
<edit w="70%" text="192.168.1.1" tips="ipv4 autofix" input_type="ipv4" auto_fix="true"/>
```
2020-08-16 09:10:01 +08:00
参考:[input type](manual/input_type_t.md)