mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2025-02-24 03:44:50 +08:00
修复Pivot的示例代码错误
This commit is contained in:
parent
db0588edcd
commit
444cc1aeee
20
.vscode/settings.json
vendored
Normal file
20
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"MicroPython.executeButton": [
|
||||||
|
{
|
||||||
|
"text": "▶",
|
||||||
|
"tooltip": "运行",
|
||||||
|
"alignment": "left",
|
||||||
|
"command": "extension.executeFile",
|
||||||
|
"priority": 3.5
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"MicroPython.syncButton": [
|
||||||
|
{
|
||||||
|
"text": "$(sync)",
|
||||||
|
"tooltip": "同步",
|
||||||
|
"alignment": "left",
|
||||||
|
"command": "extension.execute",
|
||||||
|
"priority": 4
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -49,26 +49,26 @@ FluScrollablePage{
|
|||||||
Layout.topMargin: -6
|
Layout.topMargin: -6
|
||||||
code:'FluPivot{
|
code:'FluPivot{
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
FluPivotItem:{
|
FluPivotItem {
|
||||||
text: qsTr("All")
|
title: qsTr("All")
|
||||||
contentItem: FluText{
|
contentItem: FluText{
|
||||||
text: qsTr("All emails go here.")
|
text: qsTr("All emails go here.")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
FluPivotItem:{
|
FluPivotItem {
|
||||||
text: qsTr("Unread")
|
title: qsTr("Unread")
|
||||||
contentItem: FluText{
|
contentItem: FluText{
|
||||||
text: qsTr("Unread emails go here.")
|
text: qsTr("Unread emails go here.")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
FluPivotItem:{
|
FluPivotItem {
|
||||||
text: qsTr("Flagged")
|
title: qsTr("Flagged")
|
||||||
contentItem: FluText{
|
contentItem: FluText{
|
||||||
text: qsTr("Flagged emails go here.")
|
text: qsTr("Flagged emails go here.")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
FluPivotItem:{
|
FluPivotItem {
|
||||||
text: qsTr("Urgent")
|
title: qsTr("Urgent")
|
||||||
contentItem: FluText{
|
contentItem: FluText{
|
||||||
text: qsTr("Urgent emails go here.")
|
text: qsTr("Urgent emails go here.")
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user