aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyTextFieldStyle1.qml
blob: 5ec04e0f2fa59e7694a3bf28585d0ad6908a552c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

import QtQuick 2.2
import QtQuick.Controls 1.2
import QtQuick.Controls.Styles 1.1

TextFieldStyle {
    background: BorderImage {
        source: "../../images/textfield.png"
        border.left: 4 ; border.right: 4 ; border.top: 4 ; border.bottom: 4
    }
}