z-order 를 컨트롤 하기위한 방법
import Qt 4.7 Item { width: 200 height: 200 Rectangle { id: red z: 1 color: "red" width: 100; height: 100 MouseArea { anchors.fill: parent onClicked: red.z = blue.z + 1 } } Rectangle { id: blue color: "blue" x: 50; y: 50; width: 100; height: 100 MouseArea { anchors.fill: parent onClicked: blue.z = red.z + 1 } } }
번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|
공지 | Qt프로그래밍(QtQuick) Beginner를 위한 글 읽는 순서 | 운영자 | 2019.01.05 | 58146 |
15 |
임의의 메모리 영역(QImage)에 QPainter를 이용하여 그리기
![]() | makersweb | 2017.12.19 | 2515 |
14 | QML에서 undefined를 확인하는 방법 | makersweb | 2017.11.29 | 1012 |
13 |
QPA 플러그인과 EGLFS
![]() | makersweb | 2017.11.21 | 2928 |
12 | 타임스탬프( timestamp) 유닉스 시간 | makersweb | 2017.10.19 | 1173 |
11 | Qt Logging Rule, Qt 프레임워크 로그 출력 | makersweb | 2017.01.13 | 2942 |
10 | QString 문자열에서 숫자만 추출해서 QString으로 반환 | makersweb | 2017.01.10 | 2562 |
9 | 멀티 스레드환경, 스레드에 안전한 이벤트처리 | makersweb | 2016.10.27 | 3986 |
8 |
Ubuntu Linux에서 Qt Creator 설치
![]() | makersweb | 2016.03.06 | 9706 |
7 |
QtConcurrent를 이용하여 쓰레드를 만드는 방법과 MapReduce
![]() | makersweb | 2016.01.24 | 7979 |
6 | Qt 프로그래밍의 시작 | makersweb | 2015.10.25 | 12169 |
5 | Qt의 스레드간 시그널 슬롯의 커넥션타입 [1] | makersweb | 2015.10.24 | 7851 |
4 |
Qt의 시그널 슬롯 시스템
![]() | makersweb | 2015.10.20 | 19194 |
3 | QQuickImageProvider 를 이용한 Qml 에서 이미지 표시 | makersweb | 2015.10.18 | 5288 |
2 |
Qml 사용자 ScrollBar 구현
![]() | makersweb | 2015.07.24 | 5628 |
» | z-order 를 컨트롤 하기위한 방법 | makersweb | 2015.05.13 | 6117 |