Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. International
  3. German
  4. KeyNavigation will nicht ....
Forum Updated to NodeBB v4.3 + New Features

KeyNavigation will nicht ....

Scheduled Pinned Locked Moved Unsolved German
1 Posts 1 Posters 254 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R Offline
    R Offline
    ronnic
    wrote on last edited by
    #1

    Hallo
    ich versuche gerade die Pfeiltasten zur Steuerrung vom Focus zu verwenden. Ich kann zwar den Fokus durch anklicken auf ein Rectangle setzen, nicht aber durch verwenden der Pfeiltasten.

    Was mache ich falsch?

    Item
    {
       id:theUe10Content
       width: 400; height: 200
    
        Rectangle
        {
           id: lightblue_square
           width: 50; height: 50
           color: (focus ==true)? "red" : "lightblue"
    
           anchors
           {
                left:parent.left
                top:parent.top
                leftMargin:35
                topMargin:35
           }
    
           MouseArea
           {
               anchors.fill:parent
               onClicked: parent.focus = true
           }
           KeyNavigation.right: green_square
        }
    
        Rectangle
        {
            id: green_square
            width: 50; height: 50
            color:focus? "red":"green"
            anchors
            {
                 right:parent.right
                 top:parent.top
                 rightMargin:35
                 topMargin:35
            }
    
            MouseArea
            {
                anchors.fill:parent
                onClicked: parent.focus = true
            }
            KeyNavigation.left:lightblue_square
        }
       }
    
    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved