锘??xml version="1.0" encoding="utf-8" standalone="yes"?>亚洲日本va午夜中文字幕久久,无码人妻久久一区二区三区蜜桃 ,久久国产精品久久国产精品http://www.shnenglu.com/gaimor/C/C++楂樼駭宸ョ▼甯? Android楂樼駭杞歡宸ョ▼甯? IT闆嗘垚宸ョ▼甯? 闊抽宸ョ▼甯? 鐔熸倝c,c++,java,c#,py,js,asp絳夊縐嶈璦 紼嬪簭鐚?/description>zh-cnTue, 06 May 2025 16:49:13 GMTTue, 06 May 2025 16:49:13 GMT60QML 鍗曞紶鍥劇墖鏄劇ず緲昏漿鏁堟灉http://www.shnenglu.com/gaimor/archive/2019/09/19/216846.htmlccsdu2009ccsdu2009Thu, 19 Sep 2019 10:22:00 GMThttp://www.shnenglu.com/gaimor/archive/2019/09/19/216846.htmlhttp://www.shnenglu.com/gaimor/comments/216846.htmlhttp://www.shnenglu.com/gaimor/archive/2019/09/19/216846.html#Feedback0http://www.shnenglu.com/gaimor/comments/commentRss/216846.htmlhttp://www.shnenglu.com/gaimor/services/trackbacks/216846.htmlimport QtQuick 2.11Rectangle { width: 640 height: 480 color: "#0ff90f" Flipable { id: flip width: 300 height: 300 anchors.centerIn: parent property bool flipped: false front: Image{ anchors.fill: parent source: "file:///C:/Users/Administrator/Desktop/11111/2099720.png" transform: Rotation{ origin.x: flip.width / 2 origin.y: flip.height / 2 axis.x: 0 axis.y: 1 axis.z: 0 angle: 180 } } back: Image{ anchors.fill: parent source: "file:///C:/Users/Administrator/Desktop/11111/2099720.png" } transform: Rotation{ id: rotation origin.x: flip.width / 2 origin.y: flip.height / 2 axis.x: 0 axis.y: 1 axis.z: 0 angle: 0 } states:State{ PropertyChanges { target: rotation angle: 180 } when:flip.flipped } transitions: Transition{ NumberAnimation{ target:rotation properties: "angle" duration: 240 } } MouseArea { anchors.fill: parent onClicked: flip.flipped = !flip.flipped } }}ccsdu2009 2019-09-19 18:22 鍙戣〃璇勮]]>QML 鍥劇墖緲昏漿鍔ㄧ敾http://www.shnenglu.com/gaimor/archive/2019/09/19/216845.htmlccsdu2009ccsdu2009Thu, 19 Sep 2019 09:33:00 GMThttp://www.shnenglu.com/gaimor/archive/2019/09/19/216845.htmlhttp://www.shnenglu.com/gaimor/comments/216845.htmlhttp://www.shnenglu.com/gaimor/archive/2019/09/19/216845.html#Feedback0http://www.shnenglu.com/gaimor/comments/commentRss/216845.htmlhttp://www.shnenglu.com/gaimor/services/trackbacks/216845.htmlimport QtQuick 2.11Rectangle { width: 640 height: 480 color: "#0909ff" Flipable { id: flip width: 300 height: 300 anchors.centerIn: parent property bool flipped: false front:Image{ anchors.fill: parent source: "file:///C:/Users/Administrator/Desktop/11111/2099720.png" } back:Image{ anchors.fill: parent source: "file:///C:/Users/Administrator/Desktop/11111/2099720-flip.png" } transform: Rotation{ id: rotation origin.x: flip.width / 2 origin.y: flip.height / 2 axis.x: 0 axis.y: 1 axis.z: 0 angle: 0 } states:State{ PropertyChanges { target: rotation angle: 180 } when:flip.flipped } transitions: Transition{ NumberAnimation{ target:rotation properties: "angle" duration: 240 } } MouseArea { anchors.fill: parent onClicked: flip.flipped = !flip.flipped } }}ccsdu2009 2019-09-19 17:33 鍙戣〃璇勮]]>ffmpeg av_seek_framehttp://www.shnenglu.com/gaimor/archive/2019/09/19/216840.htmlccsdu2009ccsdu2009Thu, 19 Sep 2019 01:51:00 GMThttp://www.shnenglu.com/gaimor/archive/2019/09/19/216840.htmlhttp://www.shnenglu.com/gaimor/comments/216840.htmlhttp://www.shnenglu.com/gaimor/archive/2019/09/19/216840.html#Feedback0http://www.shnenglu.com/gaimor/comments/commentRss/216840.htmlhttp://www.shnenglu.com/gaimor/services/trackbacks/216840.html int result = av_seek_frame(ffmpeg->formatCtx, -1, (ffmpeg->formatCtx->start_time + time) * AV_TIME_BASE, AVSEEK_FLAG_BACKWARD);time鍗曚綅涓虹ccsdu2009 2019-09-19 09:51 鍙戣〃璇勮]]>QML StackLayouthttp://www.shnenglu.com/gaimor/archive/2019/09/18/216837.htmlccsdu2009ccsdu2009Wed, 18 Sep 2019 03:49:00 GMThttp://www.shnenglu.com/gaimor/archive/2019/09/18/216837.htmlhttp://www.shnenglu.com/gaimor/comments/216837.htmlhttp://www.shnenglu.com/gaimor/archive/2019/09/18/216837.html#Feedback0http://www.shnenglu.com/gaimor/comments/commentRss/216837.htmlhttp://www.shnenglu.com/gaimor/services/trackbacks/216837.htmlimport QtQuick 2.5import QtQuick.Layouts 1.3import QtQuick.Controls 1.4import QtQuick.Controls.Styles 1.4Rectangle { width: 640 height: 480 color: "#333333" Button { id: button text: "Button" anchors.horizontalCenter: parent.horizontalCenter anchors.top: parent.top anchors.topMargin: 6 onClicked: { var count = layout.count if(layout.currentIndex == count - 1) layout.currentIndex = 0 else layout.currentIndex ++ } } StackLayout { id: layout anchors.top: button.bottom anchors.topMargin: 6 anchors.horizontalCenter: parent.horizontalCenter width: 480 height: 320 currentIndex: 1 Rectangle { color: 'teal' implicitWidth: 200 implicitHeight: 200 } Rectangle { color: 'plum' implicitWidth: 300 implicitHeight: 200 } Rectangle { color: '#c90909' implicitWidth: 300 implicitHeight: 200 } Rectangle { color: 'green' implicitWidth: 300 implicitHeight: 200 } Rectangle { color: 'grey' implicitWidth: 300 implicitHeight: 200 } }}ccsdu2009 2019-09-18 11:49 鍙戣〃璇勮]]>QML Canvas鏃嬭漿鍜屽鉤縐?/title>http://www.shnenglu.com/gaimor/archive/2019/09/18/216836.htmlccsdu2009ccsdu2009Wed, 18 Sep 2019 02:59:00 GMThttp://www.shnenglu.com/gaimor/archive/2019/09/18/216836.htmlhttp://www.shnenglu.com/gaimor/comments/216836.htmlhttp://www.shnenglu.com/gaimor/archive/2019/09/18/216836.html#Feedback0http://www.shnenglu.com/gaimor/comments/commentRss/216836.htmlhttp://www.shnenglu.com/gaimor/services/trackbacks/216836.htmlimport QtQuick 2.5import QtQuick.Layouts 1.2import QtQuick.Controls 1.4import QtQuick.Controls.Styles 1.4Rectangle { id: circularProgressBar width: 60 height: 60 color: "#333333" property real currentValue: 86 property bool textVisible: true property bool canClick: false Canvas { id: canvas anchors.fill: parent antialiasing: true property color primaryColor: "transparent" property color secondaryColor: "lightblue" property real centerWidth: width / 2 property real centerHeight: height / 2 property real radius: Math.min(canvas.width-10, canvas.height-10) / 2 property real minimumValue: 0 property real maximumValue: 100 property alias currentValue : circularProgressBar.currentValue property string text: "0" property real angle: (currentValue - minimumValue) / (maximumValue - minimumValue) * 2 * Math.PI property real angleOffset: -Math.PI / 2 property real rotate: 0.0 onPrimaryColorChanged: requestPaint() onSecondaryColorChanged: requestPaint() onMinimumValueChanged: requestPaint() onMaximumValueChanged: requestPaint() onCurrentValueChanged: requestPaint() onRotateChanged: requestPaint() onPaint: { var ctx = getContext("2d"); ctx.save(); ctx.clearRect(0, 0, canvas.width, canvas.height); ctx.translate(width/2,height/2) ctx.rotate(rotate*Math.PI/180.0) ctx.translate(-width/2,-height/2) ctx.beginPath(); ctx.lineWidth = 10; ctx.strokeStyle = primaryColor; ctx.arc(canvas.centerWidth, canvas.centerHeight, canvas.radius, angleOffset + canvas.angle, angleOffset + 2*Math.PI); ctx.stroke(); ctx.beginPath(); ctx.lineWidth = 3; ctx.strokeStyle = canvas.secondaryColor; ctx.arc(canvas.centerWidth, canvas.centerHeight, canvas.radius, canvas.angleOffset, canvas.angleOffset + canvas.angle); ctx.stroke(); ctx.restore(); } MouseArea { id: mouseArea anchors.fill: parent visible: circularProgressBar.canClick onClicked: canvas.clicked() onPressedChanged: canvas.requestPaint() } Timer{ id: timer interval: 150; running: true repeat: true; onTriggered: { canvas.rotate += 5 } } }}ccsdu2009 2019-09-18 10:59 鍙戣〃璇勮]]>QML閫忔槑搴﹀姩鐢?/title>http://www.shnenglu.com/gaimor/archive/2019/09/17/216834.htmlccsdu2009ccsdu2009Tue, 17 Sep 2019 08:06:00 GMThttp://www.shnenglu.com/gaimor/archive/2019/09/17/216834.htmlhttp://www.shnenglu.com/gaimor/comments/216834.htmlhttp://www.shnenglu.com/gaimor/archive/2019/09/17/216834.html#Feedback0http://www.shnenglu.com/gaimor/comments/commentRss/216834.htmlhttp://www.shnenglu.com/gaimor/services/trackbacks/216834.htmlimport QtQuick 2.11import QtQuick.Controls 2.4Rectangle{ width:640 height:480 color:"#cfcfc0" anchors.margins: 6 property bool load1: true Button { id:button text: "Button" anchors.horizontalCenter: parent.horizontalCenter onClicked: { if(area.visible) fadeOut.start() else fadeIn.start() } } PropertyAnimation { id: fadeOut target: area duration: 300 property: "opacity" from: 1.0 to: 0.0 onStopped: area.visible = false } PropertyAnimation { id: fadeIn target: area duration: 300 property: "opacity" from: 0.0 to: 1.0 onStarted: area.visible = true } Rectangle { id: area width: parent.width - 12 height: parent.height - button.height - 12 anchors.horizontalCenter: parent.horizontalCenter anchors.topMargin: 6 anchors.top: button.bottom visible: false color: "#9900ff00" }}ccsdu2009 2019-09-17 16:06 鍙戣〃璇勮]]>QML涓嶅搷搴斾笅灞傚彸閿彍鍗?/title>http://www.shnenglu.com/gaimor/archive/2019/09/17/216831.htmlccsdu2009ccsdu2009Tue, 17 Sep 2019 03:18:00 GMThttp://www.shnenglu.com/gaimor/archive/2019/09/17/216831.htmlhttp://www.shnenglu.com/gaimor/comments/216831.htmlhttp://www.shnenglu.com/gaimor/archive/2019/09/17/216831.html#Feedback0http://www.shnenglu.com/gaimor/comments/commentRss/216831.htmlhttp://www.shnenglu.com/gaimor/services/trackbacks/216831.html涓婂眰MouseArea闇瑕佹帴鍙楀彸閿簨浠訛紝濡備笅 MouseArea { anchors.fill: parent acceptedButtons: Qt.LeftButton | Qt.RightButton }ccsdu2009 2019-09-17 11:18 鍙戣〃璇勮]]>QML 鍙抽敭鑿滃崟http://www.shnenglu.com/gaimor/archive/2019/09/17/216830.htmlccsdu2009ccsdu2009Tue, 17 Sep 2019 03:10:00 GMThttp://www.shnenglu.com/gaimor/archive/2019/09/17/216830.htmlhttp://www.shnenglu.com/gaimor/comments/216830.htmlhttp://www.shnenglu.com/gaimor/archive/2019/09/17/216830.html#Feedback0http://www.shnenglu.com/gaimor/comments/commentRss/216830.htmlhttp://www.shnenglu.com/gaimor/services/trackbacks/216830.htmlimport QtQuick 2.11import QtQuick.Controls 2.4Rectangle{ width:640 height:480 color:"#cfcfc0" anchors.margins: 6 MouseArea { id: mouseRegion anchors.fill: parent; acceptedButtons: Qt.LeftButton | Qt.RightButton onClicked: { if(mouse.button == Qt.RightButton) contentMenu.popup() } Menu { id: contentMenu MenuItem { text: "Cut" onTriggered: {} } MenuItem { text: "Copy" onTriggered: {} } MenuItem { text: "Paste" onTriggered: {} } MenuSeparator { } Menu { title: "More" MenuItem { text: "Edit" } MenuItem { text: "Select All" } } } }}ccsdu2009 2019-09-17 11:10 鍙戣〃璇勮]]>QML 鑿滃崟欏?/title>http://www.shnenglu.com/gaimor/archive/2019/09/17/216829.htmlccsdu2009ccsdu2009Tue, 17 Sep 2019 03:06:00 GMThttp://www.shnenglu.com/gaimor/archive/2019/09/17/216829.htmlhttp://www.shnenglu.com/gaimor/comments/216829.htmlhttp://www.shnenglu.com/gaimor/archive/2019/09/17/216829.html#Feedback0http://www.shnenglu.com/gaimor/comments/commentRss/216829.htmlhttp://www.shnenglu.com/gaimor/services/trackbacks/216829.html 1 Button { 2 anchors.left: button 3 text: "鑿滃崟" 4 anchors.leftMargin: 12 5 onClicked: popupMenu.popup() 6 } 7 8 Menu { 9 id : popupMenu10 title: "&File"11 12 MenuItem {13 text: "&Open"14 onTriggered:{}15 }16 17 MenuItem {18 text: "&Save"19 onTriggered: {}20 }21 22 MenuItem {23 text: "&Close"24 onTriggered: Qt.quit()25 }26 }ccsdu2009 2019-09-17 11:06 鍙戣〃璇勮]]>QML 鐜艦榪涘害鏉?/title>http://www.shnenglu.com/gaimor/archive/2019/09/16/216825.htmlccsdu2009ccsdu2009Mon, 16 Sep 2019 08:38:00 GMThttp://www.shnenglu.com/gaimor/archive/2019/09/16/216825.htmlhttp://www.shnenglu.com/gaimor/comments/216825.htmlhttp://www.shnenglu.com/gaimor/archive/2019/09/16/216825.html#Feedback0http://www.shnenglu.com/gaimor/comments/commentRss/216825.htmlhttp://www.shnenglu.com/gaimor/services/trackbacks/216825.htmlimport QtQuick 2.5import QtQuick.Layouts 1.2import QtQuick.Controls 1.4import QtQuick.Controls.Styles 1.4Rectangle { id: circularProgressBar width: 60 height: 60 color: "#333333" property real currentValue: 0 property bool textVisible: true property bool canClick: false Canvas { id: canvas anchors.fill: parent antialiasing: true property color primaryColor: "transparent" property color secondaryColor: "lightblue" property real centerWidth: width / 2 property real centerHeight: height / 2 property real radius: Math.min(canvas.width-10, canvas.height-10) / 2 property real minimumValue: 0 property real maximumValue: 100 property alias currentValue : circularProgressBar.currentValue property string text: "0" property real angle: (currentValue - minimumValue) / (maximumValue - minimumValue) * 2 * Math.PI property real angleOffset: -Math.PI / 2 onPrimaryColorChanged: requestPaint() onSecondaryColorChanged: requestPaint() onMinimumValueChanged: requestPaint() onMaximumValueChanged: requestPaint() onCurrentValueChanged: requestPaint() onPaint: { var ctx = getContext("2d"); ctx.save(); ctx.clearRect(0, 0, canvas.width, canvas.height); if(mouseArea.pressed) { ctx.beginPath(); ctx.lineWidth = 10; ctx.fillStyle = Qt.lighter(canvas.secondaryColor,1.25); ctx.arc(canvas.centerWidth, canvas.centerHeight, canvas.radius, 0, 2*Math.PI); ctx.fill(); timer.running = true; } ctx.beginPath(); ctx.lineWidth = 10; ctx.strokeStyle = primaryColor; ctx.arc(canvas.centerWidth, canvas.centerHeight, canvas.radius, angleOffset + canvas.angle, angleOffset + 2*Math.PI); ctx.stroke(); ctx.beginPath(); ctx.lineWidth = 3; ctx.strokeStyle = canvas.secondaryColor; ctx.arc(canvas.centerWidth, canvas.centerHeight, canvas.radius, canvas.angleOffset, canvas.angleOffset + canvas.angle); ctx.stroke(); ctx.restore(); } Text { id: progressText anchors.centerIn: parent font.pixelSize: 16 text: canvas.text visible: circularProgressBar.textVisible color: canvas.secondaryColor } MouseArea { id: mouseArea anchors.fill: parent visible: circularProgressBar.canClick onClicked: canvas.clicked() onPressedChanged: canvas.requestPaint() } Timer{ id: timer interval: 100; running: true repeat: true; onTriggered: { if(circularProgressBar.currentValue === 100) { circularProgressBar.currentValue = 0; progressText.text = "0" } circularProgressBar.currentValue += 1; progressText.text = circularProgressBar.currentValue.toString()+"%"; } } }}ccsdu2009 2019-09-16 16:38 鍙戣〃璇勮]]> 亚洲欧洲精品成人久久曰影片| 国产99精品久久| 免费观看久久精彩视频| 久久精品国产亚洲AV大全| 久久久久久久久久久精品尤物 | 免费精品国产日韩热久久| 日韩一区二区久久久久久| 久久综合欧美成人| 国内精品久久久久久不卡影院| 93精91精品国产综合久久香蕉| 亚洲狠狠久久综合一区77777| 久久精品国产精品青草app| 久久免费视频观看| 久久强奷乱码老熟女| 午夜精品久久久久久影视777| 无码精品久久一区二区三区| 青青草原综合久久大伊人| 欧美黑人又粗又大久久久| 91精品国产综合久久精品| 久久精品国产福利国产秒| 久久久WWW成人免费精品| 亚洲午夜精品久久久久久浪潮| 东方aⅴ免费观看久久av| 狠狠色丁香久久综合婷婷| 热RE99久久精品国产66热| 综合久久国产九一剧情麻豆| 欧美噜噜久久久XXX| 国产一区二区精品久久岳| 精品国产乱码久久久久软件| 欧美一区二区三区久久综合 | 日韩亚洲欧美久久久www综合网| 精品久久国产一区二区三区香蕉 | 人妻无码αv中文字幕久久| 91久久精品视频| 少妇精品久久久一区二区三区| 久久国产色AV免费看| 久久综合亚洲色HEZYO国产| 综合久久国产九一剧情麻豆| 国产一区二区三精品久久久无广告 | 思思久久99热只有频精品66| 久久免费视频观看|