查看完整版本: [-- Calendar控件的styleData.today属性一直为false --]

QTCN开发网 -> Qt QML开发 -> Calendar控件的styleData.today属性一直为false [打印本页] 登录 -> 注册 -> 回复主题 -> 发表主题

yuyu414 2019-10-18 15:47

Calendar控件的styleData.today属性一直为false

想在日历上的今天标注一张图片,查到可以用styleData.today这个属性,但是日历控件的styleData.today属性一直为false
文档是这么说的:

readonly property bool styleData.today
true if this date is equal to today's date.


  1. import QtQuick 2.2
    import QtQuick.Controls 1.4
    import QtQuick.Controls.Private 1.0
    import QtQuick.Controls.Styles 1.4
    import org.qtproject.examples.calendar 1.0

    ApplicationWindow {
        visible: true
        width: 640
        height: 400
        minimumWidth: 400
        minimumHeight: 300
        color: "#f4f4f4"

        title: "Calendar Example"

        SystemPalette {
            id: systemPalette
        }

        SqlEventModel {
            id: eventModel
        }

        Flow {
            id: row
            anchors.fill: parent
            anchors.margins: 20
            spacing: 10
            layoutDirection: Qt.RightToLeft

            Calendar {
                id: calendar
                width: (parent.width > parent.height ? parent.width * 0.6 - parent.spacing : parent.width)
                height: (parent.height > parent.width ? parent.height * 0.6 - parent.spacing : parent.height)
                frameVisible: true
                weekNumbersVisible: true
                selectedDate: new Date()
                focus: true

                onClicked: {

                }

                style: CalendarStyle {
                    dayDelegate: Item {
                        readonly property color sameMonthDateTextColor: "#444"
                        readonly property color selectedDateColor: Qt.platform.os === "osx" ? "#3778d0" : systemPalette.highlight
                        readonly property color selectedDateTextColor: "white"
                        readonly property color differentMonthDateTextColor: "#bbb"
                        readonly property color invalidDatecolor: "#dddddd"

                        Rectangle {
                            anchors.fill: parent
                            border.color: "transparent"
                            color: styleData.date !== undefined && styleData.selected ? selectedDateColor : "transparent"
                            anchors.margins: styleData.selected ? -1 : 0
                        }

                        Image {
                            visible: false
                            anchors.top: parent.top
                            anchors.left: parent.left
                            anchors.margins: 0
                            width: 12
                            height: width
                            source: "qrc:/images/eventindicator.png"
                        }

                        Image {
                            visible: true
                            anchors.fill: parent
                            source: styleData.today ? "qrc:/images/select.png" : ""
                        }

                        Label {
                            id: dayDelegateText
                            text: styleData.today
                            anchors.centerIn: parent
                            color: {
                                var color = invalidDatecolor;
                                if (styleData.valid) {
                                    // Date is within the valid range.
                                    color = styleData.visibleMonth ? sameMonthDateTextColor : differentMonthDateTextColor;
                                    if (styleData.selected) {
                                        color = selectedDateTextColor;
                                    }
                                }
                                color;
                            }
                        }
                    }
                }
            }

            Component {
                id: eventListHeader

                Row {
                    id: eventDateRow
                    width: parent.width
                    height: eventDayLabel.height
                    spacing: 10

                    Label {
                        id: eventDayLabel
                        text: calendar.selectedDate.getDate()
                        font.pointSize: 35
                    }

                    Column {
                        height: eventDayLabel.height

                        Label {
                            readonly property var options: { weekday: "long" }
                            text: Qt.locale().standaloneDayName(calendar.selectedDate.getDay(), Locale.LongFormat)
                            font.pointSize: 18
                        }
                        Label {
                            text: Qt.locale().standaloneMonthName(calendar.selectedDate.getMonth())
                                  + calendar.selectedDate.toLocaleDateString(Qt.locale(), " yyyy")
                            font.pointSize: 12
                        }
                    }
                }
            }

            Rectangle {
                width: (parent.width > parent.height ? parent.width * 0.4 - parent.spacing : parent.width)
                height: (parent.height > parent.width ? parent.height * 0.4 - parent.spacing : parent.height)
                border.color: Qt.darker(color, 1.2)

                ListView {
                    id: eventsListView
                    spacing: 4
                    clip: true
                    header: eventListHeader
                    anchors.fill: parent
                    anchors.margins: 10
                    model: eventModel.eventsForDate(calendar.selectedDate)

                    delegate: Rectangle {
                        width: eventsListView.width
                        height: eventItemColumn.height
                        anchors.horizontalCenter: parent.horizontalCenter

                        Image {
                            anchors.top: parent.top
                            anchors.topMargin: 4
                            width: 12
                            height: width
                            source: "qrc:/images/eventindicator.png"
                        }

                        Rectangle {
                            width: parent.width
                            height: 1
                            color: "#eee"
                        }

                        Column {
                            id: eventItemColumn
                            anchors.left: parent.left
                            anchors.leftMargin: 20
                            anchors.right: parent.right
                            height: timeLabel.height + nameLabel.height + 8

                            Label {
                                id: nameLabel
                                width: parent.width
                                wrapMode: Text.Wrap
                                text: modelData.name
                            }
                            Label {
                                id: timeLabel
                                width: parent.width
                                wrapMode: Text.Wrap
                                text: modelData.startDate.toLocaleTimeString(calendar.locale, Locale.ShortFormat)
                                color: "#aaa"
                            }
                        }
                    }
                }
            }
        }
    }

有用过的吗,先谢谢各位。


查看完整版本: [-- Calendar控件的styleData.today属性一直为false --] [-- top --]



Powered by phpwind v8.7 Code ©2003-2011 phpwind
Gzip disabled