码迷,mamicode.com
首页 >  
搜索关键字:qt quick example    ( 27971个结果
react 表单
input框 <div id="example"></div> <script type="text/babel"> class Content extends React.Component { render() { return <div> <input type="text" value={t ...
分类:其他好文   时间:2021-06-23 16:49:23    阅读次数:0
react语法
react语法 ReactDOM.render( <h1>Hello, world!</h1>, document.getElementById('example') ); JavaScript 表达式 ReactDOM.render( <div> <h1>{1+1}</h1> </div> , d ...
分类:其他好文   时间:2021-06-23 16:46:19    阅读次数:0
32.qt quick-模仿QQ登录界面实现3D旋转(Rotation、Flipable)
要想模仿QQ登录界面的3D旋转,我们需要学习Rotation和Flipable.由于没找到QQ的资源图,所以我们以两个图片为例模仿QQ的3D旋转,如下图所示: 最终效果如下所示: 1.Rotation介绍 Rotation类型提供了一种通过旋转类型转换旋转Item的方法。 它允许(z轴)相对于任意点 ...
分类:其他好文   时间:2021-06-22 17:46:09    阅读次数:0
Qt Graphics模块
Qt Graphics模块用于显示二维的图形图像,所以三维的事情就不要找它了,应该去找Qt的OpenGL模块。主要由三部分组成,分别是View, Scene, Item。 QGraphicsView负责窗口显示,它继承自QWidget,因此是一个标准的Qt窗口类,Qt窗口类一般的操作QGraphic ...
分类:其他好文   时间:2021-06-22 17:38:25    阅读次数:0
I.MX6ULL移植Q5.12.9报Could not load the Qt platform plugin "linuxfb" in "/usr/lib/arm-qt/plugins" even though it was found.错误
根据正点原子的移植教程移植完成并成功运行,这是前提。 但是自己用buildroot做的rootfs,把qt的库放到里边,运行测试程序缺报错 ` qt.qpa.plugin: Could not load the Qt platform plugin "linuxfb" in "/usr/lib/ar ...
分类:系统相关   时间:2021-06-21 21:06:47    阅读次数:0
家庭记账本App进程
今天完成了昨天的初步构想,详细介绍见上一篇博客,具体项目结构和案例如下: MainActivity.java: package com.example.familybooks; import android.os.Bundle; import android.provider.ContactsCon ...
分类:移动开发   时间:2021-06-21 20:51:37    阅读次数:0
11. 实现拖动打开文件
数据拖动在Qt中会被储存为MIME类型,在Qt中使用QMimeData类来表示MIME类型的数据 voidMainWindow::dragEnterEvent(QDragEnterEvent*event){ //以.jpg或者.png为例 //这里的compare字符串比较函数,相等的时候返回0,所 ...
分类:其他好文   时间:2021-06-20 18:50:08    阅读次数:0
vue3.x 组件
注:实例环境 vue cli构建的项目 app.vue <template> <Example></Example> </template> <script> import Example from './components/Example' export default { name: 'App ...
分类:其他好文   时间:2021-06-20 18:33:01    阅读次数:0
vue3.x class和style绑定
注:实例环境 vue cli构建的项目 app.vue <template> <Example></Example> </template> <script> import Example from './components/Example' export default { name: 'App ...
分类:其他好文   时间:2021-06-20 18:21:34    阅读次数:0
vue3.x 模板语法-指令
注:实例环境 vue cli构建的项目 app.vue <template> <Example></Example> </template> <script> import Example from './components/Example' export default { name: 'App ...
分类:其他好文   时间:2021-06-20 18:04:04    阅读次数:0
27971条   上一页 1 2 3 4 5 6 ... 2798 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!