Radio buttons are auto-exclusive by default. Only one button can be checked at any time amongst radio buttons that belong to the same parent item; checking another button automatically unchecks the previously checked one. For radio buttons that do not share a common parent, ButtonGroup can be used to manage exclusivity.
import QtQuick.Controls 1.4 as Quick1
Quick1.TreeView {
width: 200
height: 100
}