mirror of
https://github.com/x-tools-author/x-tools.git
synced 2025-09-15 15:28:40 +08:00
16 lines
387 B
QML
16 lines
387 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
|
|
SAKComboBox {
|
|
id: root
|
|
textRole: "text"
|
|
valueRole: "value"
|
|
model: ListModel {
|
|
ListElement{text: qsTr("None"); value: ""}
|
|
ListElement{text: "\\r"; value: "\r"}
|
|
ListElement{text: "\\n"; value: "\n"}
|
|
ListElement{text: "\\r\\n"; value: "\r\n"}
|
|
ListElement{text: "\\n\\r"; value: "\n\r"}
|
|
}
|
|
}
|