当前位置: 首页 > article >正文

体验鸿蒙开发第一课

Index.ets:

// 导入页面路由模块
import router from '@ohos.router';
@Entry
@Component
struct Index {
  @State message: string = '我是没头脑'
  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(50)
          .fontWeight(FontWeight.Bold) // 添加一个按钮
        Button() {
          Text("Open Page")
            .fontSize(30)
            .fontWeight(FontWeight.Bold)
        }
        .type(ButtonType.Capsule)
        .margin({
          top: 20
        })
        .backgroundColor('#ff9900')
        .width('80%')
        .height('5%')
        // 给按钮绑定点击事件
        .onClick(()=>{
          console.log("点击了按钮") // 跳转第二个页面
          router.pushUrl({url: 'pages/second' }).then(()=>{
            console.log("成功跳转了");
          })
        })
      }
      .width('100%')
    }
    .height('100%')
  }
}

second.ets:

// Second.ets
import router from '@ohos.router';
@Entry
@Component
struct Second {
  @State message: string = '你是不高兴'
  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(50)
          .fontWeight(FontWeight.Bold)
        Button() {
          Text('Back')
            .fontSize(25)
            .fontWeight(FontWeight.Bold)
        }
        .type(ButtonType.Capsule)
        .margin({
          top: 20
        })
        .backgroundColor('#ff9900')
        .width('80%')
        .height('5%') // 绑定点击事件
        .onClick(()=>{
          // 返回上一页面
          router.back()
        })
      }
      .width('100%')
    }
    .height('100%')
  }
}

代码如上。

开发工具地址:

DevEco Studio-HarmonyOS Next Beta版-华为开发者联盟


http://www.kler.cn/a/321208.html

相关文章:

  • 2、开发工具和环境搭建
  • 关于在Reverse函数中不能使用L=s而是*L=*s的原因分析
  • Elasticsearch retrievers 通常与 Elasticsearch 8.16.0 一起正式发布!
  • Springboot定时任务
  • 路由器基本原理与配置
  • python selenium库的使用:通过兴趣点获取坐标
  • Linux标准IO(二)-打开、读写、定位文件
  • 【RabbitMQ】消息堆积、推拉模式
  • java调用opencv部署到centos7
  • 个人行政复议在线预约系统开发+ssm论文源码调试讲解
  • TypeScript 中的接口、泛型与自定义类型
  • 基于Es和智普AI实现的语义检索
  • <script>中的为什么需要转义?
  • 【python qdrant 向量数据库 完整示例代码】
  • Centos7 docker 自动补全命令
  • js 接力导出
  • 双token无感刷新
  • AI大语言模型的全面解读
  • 828华为云征文|使用Flexus X实例安装宝塔面板教学
  • 1 elasticsearch安装
  • 什么是开放式耳机?具有什么特色?非常值得入手的蓝牙耳机推荐
  • 【C++位图】构建灵活的空间效率工具
  • 计算机毕业设计选题推荐-基于python的养老院数据可视化分析
  • R18 NES 之SSB-less SCell operation for inter-band CA
  • 基于vue框架的宠物寻回小程序8g7el(程序+源码+数据库+调试部署+开发环境)系统界面在最后面。
  • MATLAB系列09:图形句柄