A radio button list that can be styled by font and image sources, and has a vertical layout. More...
The VerticalRadioButtonList type provides a one-select radio button group that is arranged in a vertical layout.
Here is a simple VerticalRadioButtonList:
import QtQuick 1.1 import "components" VerticalRadioButtonList { id: radiobutton_list2 textColor: "#000000" font.family: "Arial" font.bold: false font.pixelSize: 16 spacing: 4 itemSpacing: 10 model: ListModel { ListElement { item_value: "1" item_text: "radio 1" item_checked: true } ListElement { item_value: "2" item_text: "radio 2" item_checked: false } } imageUnChecked: "images/radiobutton.png" imageChecked: "images/radiobutton_click.png" onValueChanged: { console.debug(value); } }