Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
b410869c
D
Docs
项目概览
OpenHarmony
/
Docs
1 年多 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
b410869c
编写于
6月 20, 2023
作者:
O
openharmony_ci
提交者:
Gitee
6月 20, 2023
浏览文件
操作
浏览文件
下载
差异文件
!19906 添加search和radio组件api10属性示例
Merge pull request !19906 from 田雨/master
上级
4ed8114e
7814d46e
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
57 addition
and
6 deletion
+57
-6
zh-cn/application-dev/reference/arkui-ts/figures/radio.gif
zh-cn/application-dev/reference/arkui-ts/figures/radio.gif
+0
-0
zh-cn/application-dev/reference/arkui-ts/figures/searchButton.gif
...plication-dev/reference/arkui-ts/figures/searchButton.gif
+0
-0
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-radio.md
...ation-dev/reference/arkui-ts/ts-basic-components-radio.md
+10
-1
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-search.md
...tion-dev/reference/arkui-ts/ts-basic-components-search.md
+46
-4
zh-cn/application-dev/reference/arkui-ts/ts-container-counter.md
...pplication-dev/reference/arkui-ts/ts-container-counter.md
+1
-1
未找到文件。
zh-cn/application-dev/reference/arkui-ts/figures/radio.gif
查看替换文件 @
4ed8114e
浏览文件 @
b410869c
181.6 KB
|
W:
|
H:
45.8 KB
|
W:
|
H:
2-up
Swipe
Onion skin
zh-cn/application-dev/reference/arkui-ts/figures/searchButton.gif
0 → 100644
浏览文件 @
b410869c
83.8 KB
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-radio.md
浏览文件 @
b410869c
...
...
@@ -62,6 +62,9 @@ struct RadioExample {
Column
()
{
Text
(
'
Radio1
'
)
Radio
({
value
:
'
Radio1
'
,
group
:
'
radioGroup
'
}).
checked
(
true
)
.
radioStyle
({
checkedBackgroundColor
:
Color
.
Pink
})
.
height
(
50
)
.
width
(
50
)
.
onChange
((
isChecked
:
boolean
)
=>
{
...
...
@@ -71,6 +74,9 @@ struct RadioExample {
Column
()
{
Text
(
'
Radio2
'
)
Radio
({
value
:
'
Radio2
'
,
group
:
'
radioGroup
'
}).
checked
(
false
)
.
radioStyle
({
checkedBackgroundColor
:
Color
.
Pink
})
.
height
(
50
)
.
width
(
50
)
.
onChange
((
isChecked
:
boolean
)
=>
{
...
...
@@ -80,6 +86,9 @@ struct RadioExample {
Column
()
{
Text
(
'
Radio3
'
)
Radio
({
value
:
'
Radio3
'
,
group
:
'
radioGroup
'
}).
checked
(
false
)
.
radioStyle
({
checkedBackgroundColor
:
Color
.
Pink
})
.
height
(
50
)
.
width
(
50
)
.
onChange
((
isChecked
:
boolean
)
=>
{
...
...
@@ -90,4 +99,4 @@ struct RadioExample {
}
}
```
![](
figures/radio.gif
)
![
radio
](
figures/radio.gif
)
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-search.md
浏览文件 @
b410869c
...
...
@@ -66,9 +66,9 @@ Search(options?: { value?: string; placeholder?: ResourceStr; icon?: string; con
| 名称 | 描述 |
| ----------------------- | ---------------- |
| CONSTANT
<sup>
10+
</sup>
| 清除按钮常显样式。 |
| INVISIBLE
<sup>
10+
</sup>
| 清除按钮常隐样式。 |
| INPUT
<sup>
10+
</sup>
| 清除按钮输入样式。 |
| CONSTANT | 清除按钮常显样式。 |
| INVISIBLE | 清除按钮常隐样式。 |
| INPUT | 清除按钮输入样式。 |
## 事件
...
...
@@ -104,6 +104,8 @@ caretPosition(value: number): void
## 示例
### 示例1
```
ts
// xxx.ets
@
Entry
...
...
@@ -119,7 +121,7 @@ struct SearchExample {
Text
(
'
onChange:
'
+
this
.
changeValue
).
fontSize
(
18
).
margin
(
15
)
Search
({
value
:
this
.
changeValue
,
placeholder
:
'
Type to search...
'
,
controller
:
this
.
controller
})
.
searchButton
(
'
SEARCH
'
)
.
width
(
400
)
.
width
(
'
95%
'
)
.
height
(
40
)
.
backgroundColor
(
'
#F5F5F5
'
)
.
placeholderColor
(
Color
.
Grey
)
...
...
@@ -143,3 +145,43 @@ struct SearchExample {
```
![
search
](
figures/search.gif
)
### 示例2
```
ts
// xxx.ets
@
Entry
@
Component
struct
SearchButtoonExample
{
@
State
submitValue
:
string
=
''
build
()
{
Column
()
{
Text
(
'
onSubmit:
'
+
this
.
submitValue
).
fontSize
(
18
).
margin
(
15
)
Search
({
placeholder
:
'
Type to search...
'
})
.
searchButton
(
'
SEARCH
'
)
.
searchIcon
({
src
:
$r
(
'
app.media.search
'
)
})
.
cancelButton
({
style
:
CancelButtonStyle
.
CONSTANT
,
icon
:
{
src
:
$r
(
'
app.media.cancel
'
)
}
})
.
width
(
'
90%
'
)
.
height
(
40
)
.
backgroundColor
(
'
#F5F5F5
'
)
.
placeholderColor
(
Color
.
Grey
)
.
placeholderFont
({
size
:
14
,
weight
:
400
})
.
textFont
({
size
:
14
,
weight
:
400
})
.
onSubmit
((
value
:
string
)
=>
{
this
.
submitValue
=
value
})
.
margin
(
20
)
}.
width
(
'
100%
'
)
}
}
```
![
searchButton
](
figures/searchButton.gif
)
\ No newline at end of file
zh-cn/application-dev/reference/arkui-ts/ts-container-counter.md
浏览文件 @
b410869c
...
...
@@ -29,7 +29,7 @@ Counter()
## 事件
不支持通用事件和手势, 仅支持如
下事件:
除支持
[
通用事件
](
ts-universal-events-click.md
)
外,还支持以
下事件:
| 名称 | 功能描述 |
| -------- | -------- |
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录