Learn what Felgo offers to help your business succeed. Start your free evaluation today! Felgo for Your Business

Forums

OverviewFelgo 3 Support (Qt 5) › AppTextEdit background color

Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #22074

    Gabor

    Hi,

    I have the following code:

    Rectangle {
            id: descrPlaceholder
            width: imageViewer.width
            height: dp(150)
            anchors.top: imageViewer.bottom
            anchors.topMargin: dp(10)
            anchors.left: imageViewer.left
            visible: true
    
            color: ST.editBackground()
            border.color: ST.borderClr()
            border.width: dp(2)
    
            AppTextEdit {
                id: descrption
                placeholderText: qsTr("Describe the Friend:")
                cursorColor: ST.cursorClr()
            }
        }

    The point was to get a background color through the Rectangle. At this point I have the background color and I can see the placeholder text, but the Rectangle masks the AppTextEdit so I can’t write anything. Hi can I solve this problem, or how can I add a background color to AppTextEdit without using Rectangle?

    Thank you for your help.

    #22119

    Alex
    Felgo Team

    Hi,

    add this to your AppTextEdit, as currently it has no size (the placeholder is still visible as it does not clip by default):

    anchors.fill: parent
    verticalAlignment: Text.AlignTop

    Cheers,
    Alex

Viewing 2 posts - 1 through 2 (of 2 total)

RSS feed for this thread

You must be logged in to reply to this topic.

Qt_Technology_Partner_RGB_475 Qt_Service_Partner_RGB_475_padded