未验证 提交 3cd5d7c6 编写于 作者: O openharmony_ci 提交者: Gitee

!6684 update border

Merge pull request !6684 from 田雨/master
...@@ -57,29 +57,41 @@ struct CheckboxExample { ...@@ -57,29 +57,41 @@ struct CheckboxExample {
build() { build() {
Scroll() { Scroll() {
Column() { Column() {
Flex({ justifyContent: FlexAlign.Start, alignItems: ItemAlign.Center }){
CheckboxGroup({group : 'checkboxGroup'}) CheckboxGroup({group : 'checkboxGroup'})
.selectedColor(0xed6f21) .selectedColor(0xed6f21)
.onChange((itemName:CheckboxGroupResult) => { .onChange((itemName:CheckboxGroupResult) => {
console.info("TextPicker::dialogResult is" + JSON.stringify(itemName)) console.info("TextPicker::dialogResult is" + JSON.stringify(itemName))
}) })
Text('select all').fontSize(20)
}
Flex({ justifyContent: FlexAlign.Start, alignItems: ItemAlign.Center }){
Checkbox({ name: 'checkbox1', group: 'checkboxGroup' }) Checkbox({ name: 'checkbox1', group: 'checkboxGroup' })
.select(true) .select(true)
.selectedColor(0x39a2db) .selectedColor(0x39a2db)
.onChange((value: boolean) => { .onChange((value: boolean) => {
console.info('Checkbox1 change is' + value) console.info('Checkbox1 change is' + value)
}) })
Text('Checkbox1').fontSize(20)
}
Flex({ justifyContent: FlexAlign.Start, alignItems: ItemAlign.Center }){
Checkbox({ name: 'checkbox2', group: 'checkboxGroup' }) Checkbox({ name: 'checkbox2', group: 'checkboxGroup' })
.select(false) .select(false)
.selectedColor(0x39a2db) .selectedColor(0x39a2db)
.onChange((value: boolean) => { .onChange((value: boolean) => {
console.info('Checkbox2 change is' + value) console.info('Checkbox2 change is' + value)
}) })
Text('Checkbox2').fontSize(20)
}
Flex({ justifyContent: FlexAlign.Start, alignItems: ItemAlign.Center }){
Checkbox({ name: 'checkbox3', group: 'checkboxGroup' }) Checkbox({ name: 'checkbox3', group: 'checkboxGroup' })
.select(true) .select(true)
.selectedColor(0x39a2db) .selectedColor(0x39a2db)
.onChange((value: boolean) => { .onChange((value: boolean) => {
console.info('Checkbox3 change is' + value) console.info('Checkbox3 change is' + value)
}) })
Text('Checkbox3').fontSize(20)
}
} }
} }
} }
......
...@@ -31,11 +31,25 @@ ...@@ -31,11 +31,25 @@
| -------- | -------- | -------- | -------- | -------- | | -------- | -------- | -------- | -------- | -------- |
| width | [Length](../../ui/ts-types.md#长度类型) | 0 | 否 | 边框宽度。 | | width | [Length](../../ui/ts-types.md#长度类型) | 0 | 否 | 边框宽度。 |
| color | [ResourceColor](../../ui/ts-types.md) | 'Black' | 否 | 边框颜色。 | | color | [ResourceColor](../../ui/ts-types.md) | 'Black' | 否 | 边框颜色。 |
| radius | [Length](../../ui/ts-types.md#长度类型) | 0 | 否 | 边框角度。 | | radius | [Length](../../ui/ts-types.md#长度类型)\| EdgeRadiuses<sup>9+</sup> | 0 | 否 | 边框角度。 |
| style | BorderStyle | BorderStyle.Solid | 否 | 边框样式。 | | style | BorderStyle | BorderStyle.Solid | 否 | 边框样式。 |
- EdgeRadiuses<sup>9+</sup>对象说明
引用该对象时,至少传入一个参数。
| 名称 | 参数类型 | 必填 | 默认值 | 描述 |
| ----------- | -------- | ---- | ------ | ---------------- |
| topLeft | length | 否 | 0 | 左上角圆角半径。 |
| topRight | length | 否 | 0 | 右上角圆角半径。 |
| bottomLeft | length | 否 | 0 | 左下角圆角半径。 |
| bottomRight | length | 否 | 0 | 右下角圆角半径。 |
- BorderStyle枚举说明 - BorderStyle枚举说明
| 名称 | 描述 | | 名称 | 描述 |
| -------- | -------- | | -------- | -------- |
| Dotted | 显示为一系列圆点,圆点半径为borderWidth的一半。 | | Dotted | 显示为一系列圆点,圆点半径为borderWidth的一半。 |
...@@ -56,6 +70,10 @@ struct BorderExample { ...@@ -56,6 +70,10 @@ struct BorderExample {
Text('dashed') Text('dashed')
.borderStyle(BorderStyle.Dashed).borderWidth(5).borderColor(0xAFEEEE).borderRadius(10) .borderStyle(BorderStyle.Dashed).borderWidth(5).borderColor(0xAFEEEE).borderRadius(10)
.width(120).height(120).textAlign(TextAlign.Center).fontSize(16) .width(120).height(120).textAlign(TextAlign.Center).fontSize(16)
Text('dashed')
.borderStyle(BorderStyle.Dashed).borderWidth(5).borderColor(0xAFEEEE)
.borderRadius({ topLeft: 10, topRight: 20, bottomLeft: 30, bottomRight: 60 })
.width(120).height(120).textAlign(TextAlign.Center).fontSize(16)
// 点线 // 点线
Text('dotted') Text('dotted')
.border({ width: 5, color: 0x317AF7, radius: 10, style: BorderStyle.Dotted }) .border({ width: 5, color: 0x317AF7, radius: 10, style: BorderStyle.Dotted })
......
...@@ -21,9 +21,10 @@ ...@@ -21,9 +21,10 @@
> **说明:** > **说明:**
> 支持焦点控制的组件:Button、Text、Image、List、Grid。 > 支持焦点控制的组件:Button、Text、Image、List、Grid。
## 示例 ## 示例
焦点事件当前仅支持在真机上显示运行效果。
```ts ```ts
// xxx.ets // xxx.ets
@Entry @Entry
...@@ -68,3 +69,5 @@ struct FocusableExample { ...@@ -68,3 +69,5 @@ struct FocusableExample {
} }
} }
``` ```
![focus](figures/focus.png)
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册