
回复
cke_141.png
代码如下:
@Entry
@Component
struct Index {
@State message: string = 'Hello World';
build() {
Column() {
Button('删除',{type:ButtonType.Normal})
.fontSize(18)
.width(80)
.margin(10)
.padding(10)
.onClick(() => {
this.getUIContext().showAlertDialog({
title: '确认删除',
message: '确定要删除吗?',
primaryButton: {
value: '删除',
action: ()=>{}
},
secondaryButton:{
value:'取消',
action: ()=>{}
}
})
})
}
.width('100%')
}
}