Button

这是按钮最常见使用方式的概述。有关可用属性、方法或事件的更多信息,请访问 按钮的完整 API 文档。

<Button> 是一个显示按钮的 UI 组件,该按钮对用户手势做出反应。

有关可用手势的更多信息,请参阅 官方 NativeScript 文档中的手势


<Button text="Button" @tap="onButtonTap" />

样式设置按钮

如果您需要对文本的某些部分进行样式设置,可以使用FormattedStringSpan 元素的组合。

<Button>
  <FormattedString>
    <Span text="This text has a " />
    <Span text="red " style="color: red" />
    <Span text="piece of text. " />
    <Span text="Also, this bit is italic, " fontStyle="italic" />
    <Span text="and this bit is bold." fontWeight="bold" />
  </FormattedString>
</Button>

属性

名称类型描述
text字符串设置按钮的标签。
textWrap布尔值获取或设置小部件是否换行标签文本。对于较长的标签很有用。默认值为false
isEnabled布尔值使按钮禁用或启用。禁用的按钮不可用且不可点击。默认值为true

事件

名称描述
tap在按钮被点击时发出。

原生组件

安卓iOS
android.widget.ButtonUIButton
贡献者