QML使用Popup实现弹出Message

方案一:popup

在这里插入图片描述

import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15ApplicationWindow {visible: truewidth: 640height: 480title: qsTr("Top Message Popup Example")ColumnLayout {anchors.centerIn: parentspacing: 10Button {text: "Show Success Message"onClicked: showMessage("Success", "Operation completed successfully!")}Button {text: "Show Warning Message"onClicked: showMessage("Warning", "Please be cautious!")}Button {text: "Show Error Message"onClicked: showMessage("Error", "An error occurred!")}}Popup {id: messagePopupx: (parent.width - width) / 2y: 10width: parent.width * 0.9height: 60modal: falsefocus: trueclosePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutsidebackground: Rectangle {id: backgroundRectradius: 5border.width: 1// 使用属性别名来允许从外部更改颜色property alias bgColor: backgroundRect.colorproperty alias borderColor: backgroundRect.border.color}RowLayout {anchors.fill: parentanchors.margins: 10Text {id: messageTitlefont.bold: truefont.pixelSize: 16}Text {id: messageTextLayout.fillWidth: truefont.pixelSize: 14horizontalAlignment: Text.AlignHCenterverticalAlignment: Text.AlignVCenter}Button {text: "Close"onClicked: messagePopup.close()}}enter: Transition {ParallelAnimation {NumberAnimation { target: messagePopup; property: "opacity"; from: 0.0; to: 1.0; duration: 300 }NumberAnimation { target: messagePopup; property: "y"; from: -messagePopup.height; to: 10; duration: 300; easing.type: Easing.OutBack }}}exit: Transition {ParallelAnimation {NumberAnimation { target: messagePopup; property: "opacity"; from: 1.0; to: 0.0; duration: 300 }NumberAnimation { target: messagePopup; property: "y"; from: 10; to: -messagePopup.height; duration: 300; easing.type: Easing.InBack }}}Timer {id: autoCloseTimerinterval: 2000running: messagePopup.visibleonTriggered: messagePopup.close()}}function showMessage(title, message) {let color = ""switch (title.toLowerCase()) {case "info":color =  "#2196F3"; // 蓝色breakcase "success":color = "#4CAF50"; // 绿色breakcase "warning":color = "#FFC107"; // 黄色breakcase "error":color = "#F44336"; // 红色breakdefault:color = "#323232"; // 默认灰色break}messageTitle.text = title + ": "messageText.text = message// 设置背景颜色和边框颜色messagePopup.background.bgColor = Qt.lighter(color, 1.5)messagePopup.background.borderColor = color// 设置文本颜色messageTitle.color = colormessageText.color = Qt.darker(color, 1.2)messagePopup.open()}
}

方案二:Rectangle

在这里插入图片描述


import QtQuick 2.15
import QtQuick.Controls 2.15
ApplicationWindow {visible: truewidth: 640height: 480title: qsTr("Notification Example")function showMessage(category, message) {notificationModel.append({"category": category,"message": message});}ListModel {id: notificationModel}Column {id: notificationContaineranchors.margins: 10// anchors.right: parent.rightanchors.top: parent.topspacing: 8Repeater {model: notificationModelRectangle {id: notificationItemproperty string category: model.categoryproperty string message: model.messageproperty int yOffset: 0// 根据类别设置背景颜色color: {switch (category) {case "info":return "#2196F3"; // 蓝色case "success":return "#4CAF50"; // 绿色case "warning":return "#FFC107"; // 黄色case "error":return "#F44336"; // 红色default:return "#323232"; // 默认灰色}}height: 30opacity: 0.0radius: 8visible: opacity > 0 || height > 0width: 300transform: Translate {y: notificationItem.yOffset}Component.onCompleted: {showAnimation.start();}Text {anchors.centerIn: parentcolor: "white"font.weight: Font.Boldopacity: notificationItem.opacitytext: message}// 显示动画ParallelAnimation {id: showAnimationNumberAnimation {duration: 300from: 0.0property: "opacity"target: notificationItemto: 1.0}NumberAnimation {duration: 300from: -10property: "yOffset"target: notificationItemto: 0}}// 隐藏动画SequentialAnimation {id: hideAnimationParallelAnimation {NumberAnimation {duration: 200property: "opacity"target: notificationItemto: 0.0}NumberAnimation {duration: 200property: "yOffset"target: notificationItemto: -10}}NumberAnimation {duration: 100property: "height"target: notificationItemto: 0}}Timer {id: hideTimerinterval: 3000repeat: falserunning: trueonTriggered: {hideAnimation.start();}}Connections {function onFinished() {notificationModel.remove(index);}target: hideAnimation}}}}Row {anchors.bottom: parent.bottomspacing: 10Button {text: "Info"onClicked: showMessage("info", "This is an information message!")}Button {text: "Success"onClicked: showMessage("success", "Operation completed successfully!")}Button {text: "Warning"onClicked: showMessage("warning", "This is a warning message!")}Button {text: "Error"onClicked: showMessage("error", "An error occurred!")}}}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/66117.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

idea java.lang.OutOfMemoryError: GC overhead limit exceeded

Idea build项目直接报错 java: GC overhead limit exceeded java.lang.OutOfMemoryError: GC overhead limit exceeded 设置 编译器 原先heap size 设置的是 700M , 改成 2048M即可

webpack5基础(上篇)

一、基本配置 在开始使用 webpack 之前,我们需要对 webpack 的配置有一定的认识 1、5大核心概念 1)entry (入口) 指示 webpack 从哪个文件开始打包 2)output(输出) 制视 webpack 打包完的…

boot-126网易邮件发送

【SpringBoot整合JavaMail发送邮件】 一 . Java Mail基本概念 1.SMTP Simple Mail Transfer Protocol:简单邮件传输协议,用于发送邮件的协议。 2.POP3 Post office Protocol 3:邮局通讯协议第三版,用于接收邮件的标准协议。 3.IMAP Internet Message Acc…

《学校一卡通管理系统》数据库MySQL的设计与实现

引言:学校一卡通管理系统旨在为学校提供一个高效的数字化管理平台,集中管理学生和教职工的账户、充值、消费、查询等日常事务。通过该系统,学生可以便捷地进行充值、消费及查看余额,管理员则可以高效地管理用户账户、充值记录、消费记录等数据。系统采用MySQL数据库,通过视…

【ArcGISPro/GeoScenePro】检查多光谱影像的属性并优化其外观

数据 https://arcgis.com/sharing/rest/content/items/535efce0e3a04c8790ed7cc7ea96d02d/data 操作 其他数据 检查影像的属性 熟悉检查您正在使用的栅格属性非常重要。

音视频入门基础:MPEG2-PS专题(4)——FFmpeg源码中,判断某文件是否为PS文件的实现

一、引言 通过FFmpeg命令: ./ffmpeg -i XXX.ps 可以判断出某个文件是否为PS文件: 所以FFmpeg是怎样判断出某个文件是否为PS文件呢?它内部其实是通过mpegps_probe函数来判断的。从《FFmpeg源码:av_probe_input_format3函数和AVI…

[Python学习日记-74] 面向对象实战2——选课系统

[Python学习日记-74] 面向对象实战2——选课系统 简介 开发要求 实现:选课系统 简介 在前面的《年会答题系统》当中我们介绍了面向对象软件开发的一些流程,当然这一流程只是涵括了大部分的,目前在业界也没有一个统一的标准,每个…

用户注册模块(芒果头条项目进度4)

1 创建⽤户模块⼦应⽤ 1.1 在项⽬包⽬录下 创建apps的python包。 1.2 在apps包下 创建应⽤userapp $ cd 项⽬包⽬录/apps $ python ../../manage.py startapp userapp 1.3 配置导包路径 默认情况下导包路径指向项⽬根⽬录 # 通过下⾯语句可以打印当前导包路径 print(sys.pa…

5. C语言 常量与宏定义

本章目录: 前言一、什么是常量?1. 整型常量2. 浮点型常量3. 字符常量4. 字符串常量 二、如何定义常量?1. 使用 #define 宏定义2. 使用 const 关键字 三、#define 和 const 的区别四、使用建议1. 使用场景区分2. 避免宏定义的潜在问题 五、特殊用法与小技…

随机置矩阵列为0[矩阵乘法pytorch版]

文章目录 1. 举例:2. python 代码 1. 举例: A [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 ] , r a n d [ 0 , 5 , 2 ] → A [ 0 1 0 3 4 0 6 7 0 9…

Elasticsearch:利用 AutoOps 检测长时间运行的搜索查询

作者:来自 Elastic Valentin Crettaz 了解 AutoOps 如何帮助你调查困扰集群的长期搜索查询以提高搜索性能。 AutoOps 于 11 月初在 Elastic Cloud Hosted 上发布,它通过性能建议、资源利用率和成本洞察、实时问题检测和解决路径显著简化了集群管理。 Au…

uniapp实现后端数据i18n国际化

1.在main.js配置请求获取到数据再设置到i18n中, 我这里是通过后端接口先获取到一个多个数据的的json链接,通过链接再获取数据,拿到数据后通过遍历的方式设置i18n //接口数据示例:{"vi": "http://localhost:8899/…

关于Flutter应用国际化语言的设置

目录 1. Locale配置 2. 用户切换/启动自动加载缓存里面的locale 由于最近在开发app国际化设置的时候遇到一些问题,所以做出一些总结。 1. Locale配置 具体的初始化配置可以参考文档:i18n | Flutter 中文文档 - Flutter 中文开发者网站 - Flutter 值得…

基层医联体医院患者历史检验检查数据的快速Python编程分析

​​​​​​​ 一、引言 1.1 研究背景与意义 在当今数字化医疗时代,医疗数据呈爆炸式增长,涵盖患者的基本信息、病史、检验检查结果、治疗方案等各个维度。这些海量且复杂的数据蕴含着巨大价值,为精准医疗决策提供了关键依据。通过对患者历史检验检查数据的深入对比分析…

如何使用OpenCV进行抓图-多线程

前言 需求: 1、如何使用OpenCV捕抓Windows电脑上USB摄像头的流、 2、采用多线程 3、获知当前摄像头的帧率。 这个需求,之前就有做了,但是由于出现了一个问题,人家摄像头的帧率目前都可以达到60帧/s 了,而我的程序…

数势科技:解锁数据分析 Agent 的智能密码(14/30)

一、数势科技引领数据分析变革 在当今数字化浪潮中,数据已然成为企业的核心资产,而数据分析则是挖掘这一资产价值的关键钥匙。数势科技,作为数据智能领域的领军者,以其前沿的技术与创新的产品,为企业开启了高效数据分析…

26.Java Lock 接口(synchronized 关键字回顾、可重入锁快速入门、Lock 对比 synchronized)

一、synchronized 关键字 1、synchronized 关键字回顾 synchronized 是 Java 中的关键字,是一种同步锁,它修饰的对象有以下几种 修饰一个类:其作用的范围是 synchronized 后面括号括起来的部分,作用的对象是这个类的所有对象 修…

C++11编译器优化以及引用折叠

1.左值与右值的意义 1.左值引用和右值引用最终目的是减少拷贝,提高效率 2.左值引用还可以修改参数/返回值 左值引用不足: 部分函数放回场景,只能传值返回,不能引用左值返回 当前函数局部对象,出了当前函数作用域生…

云手机 —— 手机矩阵的 “超级外挂

如何打造手机矩阵 打造手机矩阵主要包括以下几个步骤: 1.确定目标与需求:首先,明确打造手机矩阵的目的和需求,是为了进行电商运营、自媒体推广、任务管理还是其他目的。这将决定后续的手机数量、操作系统选择以及应用安装等。 2.选择手机与操作系统:根据…

小程序学习06——uniapp组件常规引入和easycom引入语法

目录 一 组件注册 1.1 组件全局注册 1.2 组件全局引入 1.3 组件局部引入 页面引入组件方式 1.3.1 传统vue规范: 1.3.2 通过uni-app的easycom 二 组件的类型 2.1 基础组件列表 一 组件注册 1.1 组件全局注册 (a)新建compoents文件…