mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2025-02-12 01:30:02 +08:00
23 lines
437 B
QML
23 lines
437 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import FluentUI 1.0
|
|
|
|
TextField{
|
|
id:input
|
|
width: 300
|
|
color: FluTheme.isDark ? "#FFFFFF" : "#1A1A1A"
|
|
selectionColor: {
|
|
if(FluTheme.isDark){
|
|
return FluTheme.primaryColor.lighter
|
|
}else{
|
|
return FluTheme.primaryColor.dark
|
|
}
|
|
}
|
|
selectByMouse: true
|
|
background: FluTextBoxBackground{
|
|
inputItem: input
|
|
}
|
|
|
|
}
|
|
|