BlinCT
BlinCTMay 1, 2020, 2:26 p.m.

Распределение нескольких ListView в однмо обьекте

Все привет.
Пытаюсь сделать 2 листа с данными, примерно такое как на скриншоте что прикрепляю
Screenshot_20200501_201756.png Screenshot_20200501_201756.png

То есть это ректангл с 2 листами которые имеют нахвания каждый, внутри будут кнопки но я пока для протатипа текстовый обьект кинул.
И там идут прокрутки(но наверное нету смысла чтоыб они сразу были видны).
под листами 3 кнопки.
Подскажите, у меня что то все в одной куче получается, хотя вроде есл ия листы поместил в лайаут то обьекты должны по шириен растянутся.
Буду признателен за совет по коду.

Rectangle
{
    id: rootItem

    anchors.fill: parent

    color: "black"

    ColumnLayout
    {
        id: rootColumn

        RowLayout
        {
            id: rowList

            anchors.fill: parent

            Rectangle
            {
                id: rectLeft

                ListView
                {
                    id: leftList

                    Text {
                        id: left
                        text: qsTr("left")
                    }
                }
            }

            Rectangle
            {
                id: rectRight

                ListView
                {
                    id: rightList

                    Text {
                        id: right
                        text: qsTr("right")
                    }
                }
            }
        }

        RowLayout
        {
            id: rowButton

            Button { text: "first" }
            Button { text: "second" }
            Button { text: "third" }
        }
    }
}
We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

2
Evgenii Legotckoi
  • May 3, 2020, 5:45 p.m.
  • The answer was marked as a solution.

Привет.
Сколько раз мне тебе повторять, что якоря anchors для Layout не работают, когда такой объект расположен внутри другого Layout, или работают на половину?
У тебя в debug должна была высыпаться вот такая ошибка

qrc:/main.qml:24:13: QML RowLayout: Detected anchors on an item that is managed by a layout. This is undefined behavior; use Layout.alignment instead.

Нужно использовать Layout свойства.

Вот пример

import QtQuick 2.12
import QtQuick.Window 2.12
import QtQuick.Controls 2.12
import QtQuick.Layouts 1.12

Window {
    visible: true
    width: 640
    height: 480
    title: qsTr("Hello World")

    Rectangle
    {
        id: rootItem
        anchors.fill: parent
        color: "whitesmoke"

        ColumnLayout
        {
            id: rootColumn
            anchors.fill: parent

            RowLayout
            {
                id: rowList
                Rectangle
                {
                    id: rectLeft
                    Layout.fillWidth: true
                    ListView
                    {
                        id: leftList
                        Text {
                            id: left
                            text: qsTr("left")
                        }
                    }
                }

                Rectangle
                {
                    id: rectRight
                    Layout.fillWidth: true

                    ListView
                    {
                        id: rightList
                        Text {
                            id: right
                            text: qsTr("right")
                        }
                    }
                }
            }

            RowLayout {
                id: rowButton
                Button { text: "first" }
                Button { text: "second" }
                Button { text: "third" }
            }
        }
    }
}

Далее

    BlinCT
    • May 3, 2020, 6:34 p.m.

    Если честно то чет я постоянно про отсутствие якорей в лайаутах забываю, ты прав.

      Comments

      Only authorized users can post comments.
      Please, Log in or Sign up
      AD

      C ++ - Test 004. Pointers, Arrays and Loops

      • Result:50points,
      • Rating points-4
      m

      C ++ - Test 004. Pointers, Arrays and Loops

      • Result:80points,
      • Rating points4
      m

      C ++ - Test 004. Pointers, Arrays and Loops

      • Result:20points,
      • Rating points-10
      Last comments
      i
      innorwallNov. 14, 2024, 11:07 p.m.
      Circuit switching and packet data transmission networks Angioedema 1 priligy dapoxetine
      i
      innorwallNov. 14, 2024, 10:42 p.m.
      How to Copy Files in Linux If only females relatives with DZ offspring were considered these percentages were 23 order priligy online uk
      i
      innorwallNov. 14, 2024, 8:09 p.m.
      Qt/C++ - Tutorial 068. Hello World using the CMAKE build system in CLion ditropan pristiq dosing With the Yankees leading, 4 3, Rivera jogged in from the bullpen to a standing ovation as he prepared for his final appearance in Chicago buy priligy pakistan
      i
      innorwallNov. 14, 2024, 3:05 p.m.
      EVILEG-CORE. Using Google reCAPTCHA 2001; 98 29 34 priligy buy
      i
      innorwallNov. 14, 2024, 3 p.m.
      PyQt5 - Lesson 007. Works with QML QtQuick (Signals and slots) priligy 30mg Am J Obstet Gynecol 171 1488 505
      Now discuss on the forum
      i
      innorwallNov. 14, 2024, 2:39 p.m.
      добавить qlineseries в функции priligy amazon canada 93 GREB1 protein GREB1 AB011147 6
      i
      innorwallNov. 11, 2024, 9:55 p.m.
      Всё ещё разбираюсь с кешем. priligy walgreens levitra dulcolax carbs The third ring was found to be made up of ultra relativistic electrons, which are also present in both the outer and inner rings
      9
      9AnonimOct. 25, 2024, 7:10 p.m.
      Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…

      Follow us in social networks