gpt4 book ai didi

qt - 如何翻转单选按钮?

转载 作者:行者123 更新时间:2023-12-03 09:55:05 29 4
gpt4 key购买 nike

是否可以翻转 RadioButton?默认情况下,圆圈左对齐,文本右对齐。我想把文字放在左边,把圆圈放在右边。使用 LayoutMirroring.childrenInherit: true 我将文本放在左侧,但圆圈仍在左侧。

Column {
id: column1
x: -265
y: 219
width: 104
height: 45
spacing: 5

LayoutMirroring.enabled: true
LayoutMirroring.childrenInherit: true

ExclusiveGroup { id: diamTypes }
RadioButton { text: "one"; exclusiveGroup: diamTypes }
RadioButton { text: "two"; exclusiveGroup: diamTypes }
}

最佳答案

RadioButton 项中添加一个 Text 项(具有所需的名称)并给出相对的 xy 定位到它。将 RadioButtontext 属性留空。

  RadioButton {      
id: radioButtonID
x: 319 // Button position
y: 46

Text {
x: -60 // Relative text position to the radio button
y: 3
text: "Radio Button"
font.pointSize: 8
color: "black"
}
}

关于qt - 如何翻转单选按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31293681/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com