├── .clang-format ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── BugReport.md │ └── FeatureRequest.md └── workflows │ ├── MacOS-Qt6.5.1.yml │ ├── Ubuntu-Qt6.5.1.yml │ ├── Windows-Qt6.5.1.yml │ ├── Windows-Qt6.7.1.yml │ ├── Windows-Qt6.8.3.yml │ └── Windows-Qt6.9.0.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── 3rdparty ├── CMakeLists.txt ├── framelesshelper-2.5.0 │ ├── .github │ │ └── workflows │ │ │ └── ci.yml │ ├── .gitignore │ ├── .gitmodules │ ├── CMakeLists.txt │ ├── FramelessHelperConfig.cmake.in │ ├── LICENSE │ ├── README.md │ ├── build.bat │ ├── cmake │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── LLVM-Install.bat │ │ ├── README.md │ │ ├── VC-LTL.cmake │ │ ├── YY-Thunks-Install.bat │ │ ├── YY-Thunks.cmake │ │ ├── enable-long-path.reg │ │ ├── setup-proxy.bat │ │ ├── setup-proxy.ps1 │ │ └── utils.cmake │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── dialog │ │ │ ├── CMakeLists.txt │ │ │ ├── dialog.cpp │ │ │ ├── dialog.h │ │ │ └── main.cpp │ │ ├── mainwindow │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ └── mainwindow.ui │ │ ├── openglwidget │ │ │ ├── CMakeLists.txt │ │ │ ├── glwidget.cpp │ │ │ ├── glwidget.h │ │ │ ├── images.qrc │ │ │ ├── images │ │ │ │ └── qtlogo.png │ │ │ ├── logo.cpp │ │ │ ├── logo.h │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ └── mainwindow.h │ │ ├── quick │ │ │ ├── CMakeLists.txt │ │ │ ├── images │ │ │ │ ├── microsoft.png │ │ │ │ └── microsoft.svg │ │ │ ├── main.cpp │ │ │ ├── qml │ │ │ │ ├── ApplicationWindow.qml │ │ │ │ ├── HomePage.qml │ │ │ │ └── Window.qml │ │ │ ├── quick.pro │ │ │ ├── quicksettings.cpp │ │ │ ├── quicksettings.h │ │ │ ├── resources.qrc │ │ │ └── scripts │ │ │ │ ├── d3d11.bat │ │ │ │ ├── d3d12.bat │ │ │ │ ├── opengl.bat │ │ │ │ └── vulkan.bat │ │ ├── shared │ │ │ ├── example.ico │ │ │ ├── log.cpp │ │ │ ├── log.h │ │ │ ├── settings.cpp │ │ │ └── settings.h │ │ └── widget │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── widget.cpp │ │ │ ├── widget.h │ │ │ └── widget.pro │ ├── include │ │ └── FramelessHelper │ │ │ ├── Core │ │ │ ├── ChromePalette │ │ │ ├── FramelessHelper_Linux │ │ │ ├── FramelessHelper_Qt │ │ │ ├── FramelessHelper_Win │ │ │ ├── FramelessHelper_Windows │ │ │ ├── FramelessManager │ │ │ ├── Global │ │ │ ├── MicaMaterial │ │ │ ├── Utils │ │ │ ├── WindowBorderPainter │ │ │ ├── chromepalette.h │ │ │ ├── framelesshelper_linux.h │ │ │ ├── framelesshelper_qt.h │ │ │ ├── framelesshelper_win.h │ │ │ ├── framelesshelper_windows.h │ │ │ ├── framelesshelpercore_global.h │ │ │ ├── framelessmanager.h │ │ │ ├── micamaterial.h │ │ │ ├── private │ │ │ │ ├── chromepalette_p.h │ │ │ │ ├── framelessconfig_p.h │ │ │ │ ├── framelesshelpercore_global_p.h │ │ │ │ ├── framelessmanager_p.h │ │ │ │ ├── micamaterial_p.h │ │ │ │ ├── registrykey_p.h │ │ │ │ ├── scopeguard_p.h │ │ │ │ ├── sysapiloader_p.h │ │ │ │ ├── versionnumber_p.h │ │ │ │ ├── windowborderpainter_p.h │ │ │ │ └── winverhelper_p.h │ │ │ ├── utils.h │ │ │ └── windowborderpainter.h │ │ │ ├── Quick │ │ │ ├── FramelessQuickHelper │ │ │ ├── FramelessQuickModule │ │ │ ├── FramelessQuickUtils │ │ │ ├── Global │ │ │ ├── QuickChromePalette │ │ │ ├── QuickMicaMaterial │ │ │ ├── QuickWindowBorder │ │ │ ├── framelesshelperquick_global.h │ │ │ ├── framelessquickhelper.h │ │ │ ├── framelessquickmodule.h │ │ │ ├── framelessquickutils.h │ │ │ ├── private │ │ │ │ ├── framelessquickapplicationwindow_p.h │ │ │ │ ├── framelessquickapplicationwindow_p_p.h │ │ │ │ ├── framelessquickhelper_p.h │ │ │ │ ├── framelessquickwindow_p.h │ │ │ │ ├── framelessquickwindow_p_p.h │ │ │ │ ├── quickimageitem_p.h │ │ │ │ ├── quickmicamaterial_p.h │ │ │ │ ├── quickstandardsystembutton_p.h │ │ │ │ ├── quickstandardtitlebar_p.h │ │ │ │ └── quickwindowborder_p.h │ │ │ ├── quickchromepalette.h │ │ │ ├── quickmicamaterial.h │ │ │ └── quickwindowborder.h │ │ │ └── Widgets │ │ │ ├── FramelessDialog │ │ │ ├── FramelessMainWindow │ │ │ ├── FramelessWidget │ │ │ ├── FramelessWidgetsHelper │ │ │ ├── Global │ │ │ ├── StandardSystemButton │ │ │ ├── StandardTitleBar │ │ │ ├── framelessdialog.h │ │ │ ├── framelesshelperwidgets_global.h │ │ │ ├── framelessmainwindow.h │ │ │ ├── framelesswidget.h │ │ │ ├── framelesswidgetshelper.h │ │ │ ├── private │ │ │ ├── framelessdialog_p.h │ │ │ ├── framelessmainwindow_p.h │ │ │ ├── framelesswidget_p.h │ │ │ ├── framelesswidgetshelper_p.h │ │ │ ├── standardsystembutton_p.h │ │ │ ├── standardtitlebar_p.h │ │ │ └── widgetssharedhelper_p.h │ │ │ ├── standardsystembutton.h │ │ │ └── standardtitlebar.h │ ├── msbuild │ │ └── FramelessHelper.props │ ├── qmake │ │ ├── core.pri │ │ ├── inc │ │ │ └── core │ │ │ │ ├── framelesshelper.config │ │ │ │ └── framelesshelper.version │ │ ├── quick.pri │ │ └── widgets.pri │ └── src │ │ ├── CMakeLists.txt │ │ ├── core │ │ ├── CMakeLists.txt │ │ ├── chromepalette.cpp │ │ ├── chromepalette.h │ │ ├── chromepalette_p.h │ │ ├── framelessconfig.cpp │ │ ├── framelessconfig_p.h │ │ ├── framelesshelper_linux.h │ │ ├── framelesshelper_qt.cpp │ │ ├── framelesshelper_qt.h │ │ ├── framelesshelper_win.cpp │ │ ├── framelesshelper_win.h │ │ ├── framelesshelper_windows.h │ │ ├── framelesshelpercore.qrc │ │ ├── framelesshelpercore_global.cpp │ │ ├── framelesshelpercore_global.h │ │ ├── framelesshelpercore_global_p.h │ │ ├── framelessmanager.cpp │ │ ├── framelessmanager.h │ │ ├── framelessmanager_p.h │ │ ├── micamaterial.cpp │ │ ├── micamaterial.h │ │ ├── micamaterial_p.h │ │ ├── platformsupport_linux.cpp │ │ ├── platformsupport_win.cpp │ │ ├── registrykey.cpp │ │ ├── registrykey_p.h │ │ ├── resources │ │ │ ├── fonts │ │ │ │ └── iconfont.ttf │ │ │ └── images │ │ │ │ └── noise.png │ │ ├── scopeguard_p.h │ │ ├── sysapiloader.cpp │ │ ├── sysapiloader_p.h │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── utils_linux.cpp │ │ ├── utils_mac.mm │ │ ├── utils_win.cpp │ │ ├── versionnumber_p.h │ │ ├── windowborderpainter.cpp │ │ ├── windowborderpainter.h │ │ ├── windowborderpainter_p.h │ │ ├── winverhelper.cpp │ │ └── winverhelper_p.h │ │ ├── quick │ │ ├── CMakeLists.txt │ │ ├── framelesshelperquick_global.cpp │ │ ├── framelesshelperquick_global.h │ │ ├── framelessquickapplicationwindow.cpp │ │ ├── framelessquickapplicationwindow_p.h │ │ ├── framelessquickapplicationwindow_p_p.h │ │ ├── framelessquickhelper.cpp │ │ ├── framelessquickhelper.h │ │ ├── framelessquickhelper_p.h │ │ ├── framelessquickmodule.h │ │ ├── framelessquickutils.cpp │ │ ├── framelessquickutils.h │ │ ├── framelessquickwindow.cpp │ │ ├── framelessquickwindow_p.h │ │ ├── framelessquickwindow_p_p.h │ │ ├── quickchromepalette.cpp │ │ ├── quickchromepalette.h │ │ ├── quickimageitem.cpp │ │ ├── quickimageitem.h │ │ ├── quickimageitem_p.h │ │ ├── quickmicamaterial.cpp │ │ ├── quickmicamaterial.h │ │ ├── quickmicamaterial_p.h │ │ ├── quickstandardsystembutton.cpp │ │ ├── quickstandardsystembutton_p.h │ │ ├── quickstandardtitlebar.cpp │ │ ├── quickstandardtitlebar_p.h │ │ ├── quickwindowborder.cpp │ │ ├── quickwindowborder.h │ │ └── quickwindowborder_p.h │ │ └── widgets │ │ ├── CMakeLists.txt │ │ ├── framelessdialog.cpp │ │ ├── framelessdialog.h │ │ ├── framelessdialog_p.h │ │ ├── framelesshelperwidgets_global.cpp │ │ ├── framelesshelperwidgets_global.h │ │ ├── framelessmainwindow.cpp │ │ ├── framelessmainwindow.h │ │ ├── framelessmainwindow_p.h │ │ ├── framelesswidget.cpp │ │ ├── framelesswidget.h │ │ ├── framelesswidget_p.h │ │ ├── framelesswidgetshelper.cpp │ │ ├── framelesswidgetshelper.h │ │ ├── framelesswidgetshelper_p.h │ │ ├── standardsystembutton.cpp │ │ ├── standardsystembutton.h │ │ ├── standardsystembutton_p.h │ │ ├── standardtitlebar.cpp │ │ ├── standardtitlebar.h │ │ ├── standardtitlebar_p.h │ │ ├── widgetssharedhelper.cpp │ │ └── widgetssharedhelper_p.h ├── framelesshelper │ ├── bin │ │ ├── debug │ │ │ ├── FramelessHelperCore64d.dll │ │ │ ├── FramelessHelperQuick64d.dll │ │ │ └── FramelessHelperWidgets64d.dll │ │ └── release │ │ │ ├── FramelessHelperCore64.dll │ │ │ ├── FramelessHelperQuick64.dll │ │ │ └── FramelessHelperWidgets64.dll │ ├── include │ │ └── FramelessHelper │ │ │ ├── Core │ │ │ ├── ChromePalette │ │ │ ├── FramelessHelper_Win │ │ │ ├── FramelessHelper_Windows │ │ │ ├── FramelessManager │ │ │ ├── Global │ │ │ ├── MicaMaterial │ │ │ ├── Utils │ │ │ ├── WindowBorderPainter │ │ │ ├── chromepalette.h │ │ │ ├── framelesshelper.config │ │ │ ├── framelesshelper.version │ │ │ ├── framelesshelper_win.h │ │ │ ├── framelesshelper_windows.h │ │ │ ├── framelesshelpercore_global.h │ │ │ ├── framelessmanager.h │ │ │ ├── micamaterial.h │ │ │ ├── private │ │ │ │ ├── chromepalette_p.h │ │ │ │ ├── framelessconfig_p.h │ │ │ │ ├── framelesshelpercore_global_p.h │ │ │ │ ├── framelessmanager_p.h │ │ │ │ ├── micamaterial_p.h │ │ │ │ ├── registrykey_p.h │ │ │ │ ├── scopeguard_p.h │ │ │ │ ├── sysapiloader_p.h │ │ │ │ ├── versionnumber_p.h │ │ │ │ ├── windowborderpainter_p.h │ │ │ │ └── winverhelper_p.h │ │ │ ├── utils.h │ │ │ └── windowborderpainter.h │ │ │ ├── Quick │ │ │ ├── FramelessQuickHelper │ │ │ ├── FramelessQuickModule │ │ │ ├── FramelessQuickUtils │ │ │ ├── Global │ │ │ ├── QuickChromePalette │ │ │ ├── QuickMicaMaterial │ │ │ ├── QuickWindowBorder │ │ │ ├── framelesshelperquick_global.h │ │ │ ├── framelessquickhelper.h │ │ │ ├── framelessquickmodule.h │ │ │ ├── framelessquickutils.h │ │ │ ├── private │ │ │ │ ├── framelessquickapplicationwindow_p.h │ │ │ │ ├── framelessquickapplicationwindow_p_p.h │ │ │ │ ├── framelessquickhelper_p.h │ │ │ │ ├── framelessquickwindow_p.h │ │ │ │ ├── framelessquickwindow_p_p.h │ │ │ │ ├── quickimageitem_p.h │ │ │ │ ├── quickmicamaterial_p.h │ │ │ │ ├── quickstandardsystembutton_p.h │ │ │ │ ├── quickstandardtitlebar_p.h │ │ │ │ └── quickwindowborder_p.h │ │ │ ├── quickchromepalette.h │ │ │ ├── quickmicamaterial.h │ │ │ └── quickwindowborder.h │ │ │ └── Widgets │ │ │ ├── FramelessDialog │ │ │ ├── FramelessMainWindow │ │ │ ├── FramelessWidget │ │ │ ├── FramelessWidgetsHelper │ │ │ ├── Global │ │ │ ├── StandardSystemButton │ │ │ ├── StandardTitleBar │ │ │ ├── framelessdialog.h │ │ │ ├── framelesshelperwidgets_global.h │ │ │ ├── framelessmainwindow.h │ │ │ ├── framelesswidget.h │ │ │ ├── framelesswidgetshelper.h │ │ │ ├── private │ │ │ ├── framelessdialog_p.h │ │ │ ├── framelessmainwindow_p.h │ │ │ ├── framelesswidget_p.h │ │ │ ├── framelesswidgetshelper_p.h │ │ │ ├── standardsystembutton_p.h │ │ │ ├── standardtitlebar_p.h │ │ │ └── widgetssharedhelper_p.h │ │ │ ├── standardsystembutton.h │ │ │ └── standardtitlebar.h │ ├── lib │ │ ├── debug │ │ │ ├── FramelessHelperCore64d.lib │ │ │ ├── FramelessHelperQuick64d.lib │ │ │ └── FramelessHelperWidgets64d.lib │ │ └── release │ │ │ ├── FramelessHelperCore64.lib │ │ │ ├── FramelessHelperQuick64.lib │ │ │ └── FramelessHelperWidgets64.lib │ ├── qml │ │ └── org │ │ │ └── wangwenx190 │ │ │ └── FramelessHelper │ │ │ ├── FramelessHelperQuickplugin.dll │ │ │ ├── FramelessHelperQuickplugind.dll │ │ │ ├── plugins.qmltypes │ │ │ └── qmldir │ └── share │ │ └── FramelessHelper.props ├── qrcode-1.4.0 │ ├── CMakeLists.txt │ ├── QrCode.cpp │ ├── QrCode.hpp │ ├── QrCodeGeneratorDemo.cpp │ └── QrCodeGeneratorWorker.cpp ├── qrcode │ ├── include │ │ └── QrCode.hpp │ └── lib │ │ ├── debug │ │ └── qrcoded.lib │ │ └── release │ │ └── qrcode.lib ├── qscintilla-2.14.0 │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── LICENSE │ ├── NEWS │ ├── Python │ │ ├── README │ │ ├── config-tests │ │ │ └── cfgtest_Qsci.cpp │ │ ├── project.py │ │ ├── pyproject-qt5.toml │ │ ├── pyproject-qt6.toml │ │ └── sip │ │ │ ├── qsciabstractapis.sip │ │ │ ├── qsciapis.sip │ │ │ ├── qscicommand.sip │ │ │ ├── qscicommandset.sip │ │ │ ├── qscidocument.sip │ │ │ ├── qscilexer.sip │ │ │ ├── qscilexerasm.sip │ │ │ ├── qscilexeravs.sip │ │ │ ├── qscilexerbash.sip │ │ │ ├── qscilexerbatch.sip │ │ │ ├── qscilexercmake.sip │ │ │ ├── qscilexercoffeescript.sip │ │ │ ├── qscilexercpp.sip │ │ │ ├── qscilexercsharp.sip │ │ │ ├── qscilexercss.sip │ │ │ ├── qscilexercustom.sip │ │ │ ├── qscilexerd.sip │ │ │ ├── qscilexerdiff.sip │ │ │ ├── qscilexeredifact.sip │ │ │ ├── qscilexerfortran.sip │ │ │ ├── qscilexerfortran77.sip │ │ │ ├── qscilexerhex.sip │ │ │ ├── qscilexerhtml.sip │ │ │ ├── qscilexeridl.sip │ │ │ ├── qscilexerintelhex.sip │ │ │ ├── qscilexerjava.sip │ │ │ ├── qscilexerjavascript.sip │ │ │ ├── qscilexerjson.sip │ │ │ ├── qscilexerlua.sip │ │ │ ├── qscilexermakefile.sip │ │ │ ├── qscilexermarkdown.sip │ │ │ ├── qscilexermasm.sip │ │ │ ├── qscilexermatlab.sip │ │ │ ├── qscilexernasm.sip │ │ │ ├── qscilexeroctave.sip │ │ │ ├── qscilexerpascal.sip │ │ │ ├── qscilexerperl.sip │ │ │ ├── qscilexerpo.sip │ │ │ ├── qscilexerpostscript.sip │ │ │ ├── qscilexerpov.sip │ │ │ ├── qscilexerproperties.sip │ │ │ ├── qscilexerpython.sip │ │ │ ├── qscilexerruby.sip │ │ │ ├── qscilexerspice.sip │ │ │ ├── qscilexersql.sip │ │ │ ├── qscilexersrec.sip │ │ │ ├── qscilexertcl.sip │ │ │ ├── qscilexertekhex.sip │ │ │ ├── qscilexertex.sip │ │ │ ├── qscilexerverilog.sip │ │ │ ├── qscilexervhdl.sip │ │ │ ├── qscilexerxml.sip │ │ │ ├── qscilexeryaml.sip │ │ │ ├── qscimacro.sip │ │ │ ├── qscimod5.sip │ │ │ ├── qscimod6.sip │ │ │ ├── qscimodcommon.sip │ │ │ ├── qsciprinter.sip │ │ │ ├── qsciscintilla.sip │ │ │ ├── qsciscintillabase.sip │ │ │ ├── qscistyle.sip │ │ │ └── qscistyledtext.sip │ ├── designer │ │ ├── designer.pro │ │ ├── qscintillaplugin.cpp │ │ └── qscintillaplugin.h │ ├── example │ │ ├── application.pro │ │ ├── application.qrc │ │ ├── images │ │ │ ├── copy.png │ │ │ ├── cut.png │ │ │ ├── new.png │ │ │ ├── open.png │ │ │ ├── paste.png │ │ │ └── save.png │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ └── mainwindow.h │ ├── qsci │ │ └── api │ │ │ └── python │ │ │ ├── Python-2.4.api │ │ │ ├── Python-2.5.api │ │ │ ├── Python-2.6.api │ │ │ ├── Python-2.7.api │ │ │ ├── Python-3.1.api │ │ │ ├── Python-3.10.api │ │ │ ├── Python-3.11.api │ │ │ ├── Python-3.2.api │ │ │ ├── Python-3.3.api │ │ │ ├── Python-3.4.api │ │ │ ├── Python-3.5.api │ │ │ ├── Python-3.6.api │ │ │ ├── Python-3.7.api │ │ │ ├── Python-3.8.api │ │ │ └── Python-3.9.api │ ├── scintilla │ │ ├── include │ │ │ ├── ILexer.h │ │ │ ├── ILoader.h │ │ │ ├── License.txt │ │ │ ├── Platform.h │ │ │ ├── SciLexer.h │ │ │ ├── Sci_Position.h │ │ │ ├── Scintilla.h │ │ │ ├── Scintilla.iface │ │ │ └── ScintillaWidget.h │ │ ├── lexers │ │ │ ├── LexA68k.cpp │ │ │ ├── LexAPDL.cpp │ │ │ ├── LexASY.cpp │ │ │ ├── LexAU3.cpp │ │ │ ├── LexAVE.cpp │ │ │ ├── LexAVS.cpp │ │ │ ├── LexAbaqus.cpp │ │ │ ├── LexAda.cpp │ │ │ ├── LexAsm.cpp │ │ │ ├── LexAsn1.cpp │ │ │ ├── LexBaan.cpp │ │ │ ├── LexBash.cpp │ │ │ ├── LexBasic.cpp │ │ │ ├── LexBatch.cpp │ │ │ ├── LexBibTeX.cpp │ │ │ ├── LexBullant.cpp │ │ │ ├── LexCLW.cpp │ │ │ ├── LexCOBOL.cpp │ │ │ ├── LexCPP.cpp │ │ │ ├── LexCSS.cpp │ │ │ ├── LexCaml.cpp │ │ │ ├── LexCmake.cpp │ │ │ ├── LexCoffeeScript.cpp │ │ │ ├── LexConf.cpp │ │ │ ├── LexCrontab.cpp │ │ │ ├── LexCsound.cpp │ │ │ ├── LexD.cpp │ │ │ ├── LexDMAP.cpp │ │ │ ├── LexDMIS.cpp │ │ │ ├── LexDiff.cpp │ │ │ ├── LexECL.cpp │ │ │ ├── LexEDIFACT.cpp │ │ │ ├── LexEScript.cpp │ │ │ ├── LexEiffel.cpp │ │ │ ├── LexErlang.cpp │ │ │ ├── LexErrorList.cpp │ │ │ ├── LexFlagship.cpp │ │ │ ├── LexForth.cpp │ │ │ ├── LexFortran.cpp │ │ │ ├── LexGAP.cpp │ │ │ ├── LexGui4Cli.cpp │ │ │ ├── LexHTML.cpp │ │ │ ├── LexHaskell.cpp │ │ │ ├── LexHex.cpp │ │ │ ├── LexIndent.cpp │ │ │ ├── LexInno.cpp │ │ │ ├── LexJSON.cpp │ │ │ ├── LexKVIrc.cpp │ │ │ ├── LexKix.cpp │ │ │ ├── LexLPeg.cpp │ │ │ ├── LexLaTeX.cpp │ │ │ ├── LexLisp.cpp │ │ │ ├── LexLout.cpp │ │ │ ├── LexLua.cpp │ │ │ ├── LexMMIXAL.cpp │ │ │ ├── LexMPT.cpp │ │ │ ├── LexMSSQL.cpp │ │ │ ├── LexMagik.cpp │ │ │ ├── LexMake.cpp │ │ │ ├── LexMarkdown.cpp │ │ │ ├── LexMatlab.cpp │ │ │ ├── LexMaxima.cpp │ │ │ ├── LexMetapost.cpp │ │ │ ├── LexModula.cpp │ │ │ ├── LexMySQL.cpp │ │ │ ├── LexNimrod.cpp │ │ │ ├── LexNsis.cpp │ │ │ ├── LexNull.cpp │ │ │ ├── LexOScript.cpp │ │ │ ├── LexOpal.cpp │ │ │ ├── LexPB.cpp │ │ │ ├── LexPLM.cpp │ │ │ ├── LexPO.cpp │ │ │ ├── LexPOV.cpp │ │ │ ├── LexPS.cpp │ │ │ ├── LexPascal.cpp │ │ │ ├── LexPerl.cpp │ │ │ ├── LexPowerPro.cpp │ │ │ ├── LexPowerShell.cpp │ │ │ ├── LexProgress.cpp │ │ │ ├── LexProps.cpp │ │ │ ├── LexPython.cpp │ │ │ ├── LexR.cpp │ │ │ ├── LexRebol.cpp │ │ │ ├── LexRegistry.cpp │ │ │ ├── LexRuby.cpp │ │ │ ├── LexRust.cpp │ │ │ ├── LexSAS.cpp │ │ │ ├── LexSML.cpp │ │ │ ├── LexSQL.cpp │ │ │ ├── LexSTTXT.cpp │ │ │ ├── LexScriptol.cpp │ │ │ ├── LexSmalltalk.cpp │ │ │ ├── LexSorcus.cpp │ │ │ ├── LexSpecman.cpp │ │ │ ├── LexSpice.cpp │ │ │ ├── LexStata.cpp │ │ │ ├── LexTACL.cpp │ │ │ ├── LexTADS3.cpp │ │ │ ├── LexTAL.cpp │ │ │ ├── LexTCL.cpp │ │ │ ├── LexTCMD.cpp │ │ │ ├── LexTeX.cpp │ │ │ ├── LexTxt2tags.cpp │ │ │ ├── LexVB.cpp │ │ │ ├── LexVHDL.cpp │ │ │ ├── LexVerilog.cpp │ │ │ ├── LexVisualProlog.cpp │ │ │ ├── LexYAML.cpp │ │ │ └── License.txt │ │ ├── lexlib │ │ │ ├── Accessor.cpp │ │ │ ├── Accessor.h │ │ │ ├── CharacterCategory.cpp │ │ │ ├── CharacterCategory.h │ │ │ ├── CharacterSet.cpp │ │ │ ├── CharacterSet.h │ │ │ ├── DefaultLexer.cpp │ │ │ ├── DefaultLexer.h │ │ │ ├── LexAccessor.h │ │ │ ├── LexerBase.cpp │ │ │ ├── LexerBase.h │ │ │ ├── LexerModule.cpp │ │ │ ├── LexerModule.h │ │ │ ├── LexerNoExceptions.cpp │ │ │ ├── LexerNoExceptions.h │ │ │ ├── LexerSimple.cpp │ │ │ ├── LexerSimple.h │ │ │ ├── License.txt │ │ │ ├── OptionSet.h │ │ │ ├── PropSetSimple.cpp │ │ │ ├── PropSetSimple.h │ │ │ ├── SparseState.h │ │ │ ├── StringCopy.h │ │ │ ├── StyleContext.cpp │ │ │ ├── StyleContext.h │ │ │ ├── SubStyles.h │ │ │ ├── WordList.cpp │ │ │ └── WordList.h │ │ └── src │ │ │ ├── AutoComplete.cpp │ │ │ ├── AutoComplete.h │ │ │ ├── CallTip.cpp │ │ │ ├── CallTip.h │ │ │ ├── CaseConvert.cpp │ │ │ ├── CaseConvert.h │ │ │ ├── CaseFolder.cpp │ │ │ ├── CaseFolder.h │ │ │ ├── Catalogue.cpp │ │ │ ├── Catalogue.h │ │ │ ├── CellBuffer.cpp │ │ │ ├── CellBuffer.h │ │ │ ├── CharClassify.cpp │ │ │ ├── CharClassify.h │ │ │ ├── ContractionState.cpp │ │ │ ├── ContractionState.h │ │ │ ├── DBCS.cpp │ │ │ ├── DBCS.h │ │ │ ├── Decoration.cpp │ │ │ ├── Decoration.h │ │ │ ├── Document.cpp │ │ │ ├── Document.h │ │ │ ├── EditModel.cpp │ │ │ ├── EditModel.h │ │ │ ├── EditView.cpp │ │ │ ├── EditView.h │ │ │ ├── Editor.cpp │ │ │ ├── Editor.h │ │ │ ├── ElapsedPeriod.h │ │ │ ├── ExternalLexer.cpp │ │ │ ├── ExternalLexer.h │ │ │ ├── FontQuality.h │ │ │ ├── Indicator.cpp │ │ │ ├── Indicator.h │ │ │ ├── IntegerRectangle.h │ │ │ ├── KeyMap.cpp │ │ │ ├── KeyMap.h │ │ │ ├── License.txt │ │ │ ├── LineMarker.cpp │ │ │ ├── LineMarker.h │ │ │ ├── MarginView.cpp │ │ │ ├── MarginView.h │ │ │ ├── Partitioning.h │ │ │ ├── PerLine.cpp │ │ │ ├── PerLine.h │ │ │ ├── Position.h │ │ │ ├── PositionCache.cpp │ │ │ ├── PositionCache.h │ │ │ ├── RESearch.cpp │ │ │ ├── RESearch.h │ │ │ ├── RunStyles.cpp │ │ │ ├── RunStyles.h │ │ │ ├── SciTE.properties │ │ │ ├── ScintillaBase.cpp │ │ │ ├── ScintillaBase.h │ │ │ ├── Selection.cpp │ │ │ ├── Selection.h │ │ │ ├── SparseVector.h │ │ │ ├── SplitVector.h │ │ │ ├── Style.cpp │ │ │ ├── Style.h │ │ │ ├── UniConversion.cpp │ │ │ ├── UniConversion.h │ │ │ ├── UniqueString.h │ │ │ ├── ViewStyle.cpp │ │ │ ├── ViewStyle.h │ │ │ ├── XPM.cpp │ │ │ └── XPM.h │ └── src │ │ ├── .qmake.stash │ │ ├── InputMethod.cpp │ │ ├── ListBoxQt.cpp │ │ ├── ListBoxQt.h │ │ ├── MacPasteboardMime.cpp │ │ ├── PlatQt.cpp │ │ ├── Qsci │ │ ├── qsciabstractapis.h │ │ ├── qsciapis.h │ │ ├── qscicommand.h │ │ ├── qscicommandset.h │ │ ├── qscidocument.h │ │ ├── qsciglobal.h │ │ ├── qscilexer.h │ │ ├── qscilexerasm.h │ │ ├── qscilexeravs.h │ │ ├── qscilexerbash.h │ │ ├── qscilexerbatch.h │ │ ├── qscilexercmake.h │ │ ├── qscilexercoffeescript.h │ │ ├── qscilexercpp.h │ │ ├── qscilexercsharp.h │ │ ├── qscilexercss.h │ │ ├── qscilexercustom.h │ │ ├── qscilexerd.h │ │ ├── qscilexerdiff.h │ │ ├── qscilexeredifact.h │ │ ├── qscilexerfortran.h │ │ ├── qscilexerfortran77.h │ │ ├── qscilexerhex.h │ │ ├── qscilexerhtml.h │ │ ├── qscilexeridl.h │ │ ├── qscilexerintelhex.h │ │ ├── qscilexerjava.h │ │ ├── qscilexerjavascript.h │ │ ├── qscilexerjson.h │ │ ├── qscilexerlua.h │ │ ├── qscilexermakefile.h │ │ ├── qscilexermarkdown.h │ │ ├── qscilexermasm.h │ │ ├── qscilexermatlab.h │ │ ├── qscilexernasm.h │ │ ├── qscilexeroctave.h │ │ ├── qscilexerpascal.h │ │ ├── qscilexerperl.h │ │ ├── qscilexerpo.h │ │ ├── qscilexerpostscript.h │ │ ├── qscilexerpov.h │ │ ├── qscilexerproperties.h │ │ ├── qscilexerpython.h │ │ ├── qscilexerruby.h │ │ ├── qscilexerspice.h │ │ ├── qscilexersql.h │ │ ├── qscilexersrec.h │ │ ├── qscilexertcl.h │ │ ├── qscilexertekhex.h │ │ ├── qscilexertex.h │ │ ├── qscilexerverilog.h │ │ ├── qscilexervhdl.h │ │ ├── qscilexerxml.h │ │ ├── qscilexeryaml.h │ │ ├── qscimacro.h │ │ ├── qsciprinter.h │ │ ├── qsciscintilla.h │ │ ├── qsciscintillabase.h │ │ ├── qscistyle.h │ │ └── qscistyledtext.h │ │ ├── SciAccessibility.cpp │ │ ├── SciAccessibility.h │ │ ├── SciClasses.cpp │ │ ├── SciClasses.h │ │ ├── ScintillaQt.cpp │ │ ├── ScintillaQt.h │ │ ├── features │ │ └── qscintilla2.prf │ │ ├── features_staticlib │ │ └── qscintilla2.prf │ │ ├── qsciabstractapis.cpp │ │ ├── qsciapis.cpp │ │ ├── qscicommand.cpp │ │ ├── qscicommandset.cpp │ │ ├── qscidocument.cpp │ │ ├── qscilexer.cpp │ │ ├── qscilexerasm.cpp │ │ ├── qscilexeravs.cpp │ │ ├── qscilexerbash.cpp │ │ ├── qscilexerbatch.cpp │ │ ├── qscilexercmake.cpp │ │ ├── qscilexercoffeescript.cpp │ │ ├── qscilexercpp.cpp │ │ ├── qscilexercsharp.cpp │ │ ├── qscilexercss.cpp │ │ ├── qscilexercustom.cpp │ │ ├── qscilexerd.cpp │ │ ├── qscilexerdiff.cpp │ │ ├── qscilexeredifact.cpp │ │ ├── qscilexerfortran.cpp │ │ ├── qscilexerfortran77.cpp │ │ ├── qscilexerhex.cpp │ │ ├── qscilexerhtml.cpp │ │ ├── qscilexeridl.cpp │ │ ├── qscilexerintelhex.cpp │ │ ├── qscilexerjava.cpp │ │ ├── qscilexerjavascript.cpp │ │ ├── qscilexerjson.cpp │ │ ├── qscilexerlua.cpp │ │ ├── qscilexermakefile.cpp │ │ ├── qscilexermarkdown.cpp │ │ ├── qscilexermasm.cpp │ │ ├── qscilexermatlab.cpp │ │ ├── qscilexernasm.cpp │ │ ├── qscilexeroctave.cpp │ │ ├── qscilexerpascal.cpp │ │ ├── qscilexerperl.cpp │ │ ├── qscilexerpo.cpp │ │ ├── qscilexerpostscript.cpp │ │ ├── qscilexerpov.cpp │ │ ├── qscilexerproperties.cpp │ │ ├── qscilexerpython.cpp │ │ ├── qscilexerruby.cpp │ │ ├── qscilexerspice.cpp │ │ ├── qscilexersql.cpp │ │ ├── qscilexersrec.cpp │ │ ├── qscilexertcl.cpp │ │ ├── qscilexertekhex.cpp │ │ ├── qscilexertex.cpp │ │ ├── qscilexerverilog.cpp │ │ ├── qscilexervhdl.cpp │ │ ├── qscilexerxml.cpp │ │ ├── qscilexeryaml.cpp │ │ ├── qscimacro.cpp │ │ ├── qscintilla.pro │ │ ├── qscintilla.qtvscr │ │ ├── qscintilla.vcxproj │ │ ├── qscintilla.vcxproj.filters │ │ ├── qscintilla_cs.qm │ │ ├── qscintilla_cs.ts │ │ ├── qscintilla_de.qm │ │ ├── qscintilla_de.ts │ │ ├── qscintilla_es.qm │ │ ├── qscintilla_es.ts │ │ ├── qscintilla_fr.qm │ │ ├── qscintilla_fr.ts │ │ ├── qscintilla_pt_br.qm │ │ ├── qscintilla_pt_br.ts │ │ ├── qsciprinter.cpp │ │ ├── qsciscintilla.cpp │ │ ├── qsciscintillabase.cpp │ │ ├── qscistyle.cpp │ │ └── qscistyledtext.cpp ├── qscintilla │ ├── LICENSE │ ├── NEWS │ ├── bin │ │ ├── debug │ │ │ └── qscintilla2_qt6d.dll │ │ └── release │ │ │ └── qscintilla2_qt6.dll │ ├── include │ │ ├── scintilla │ │ │ ├── include │ │ │ │ ├── ILexer.h │ │ │ │ ├── ILoader.h │ │ │ │ ├── License.txt │ │ │ │ ├── Platform.h │ │ │ │ ├── SciLexer.h │ │ │ │ ├── Sci_Position.h │ │ │ │ ├── Scintilla.h │ │ │ │ ├── Scintilla.iface │ │ │ │ └── ScintillaWidget.h │ │ │ ├── lexers │ │ │ │ └── License.txt │ │ │ ├── lexlib │ │ │ │ ├── Accessor.h │ │ │ │ ├── CharacterCategory.h │ │ │ │ ├── CharacterSet.h │ │ │ │ ├── DefaultLexer.h │ │ │ │ ├── LexAccessor.h │ │ │ │ ├── LexerBase.h │ │ │ │ ├── LexerModule.h │ │ │ │ ├── LexerNoExceptions.h │ │ │ │ ├── LexerSimple.h │ │ │ │ ├── License.txt │ │ │ │ ├── OptionSet.h │ │ │ │ ├── PropSetSimple.h │ │ │ │ ├── SparseState.h │ │ │ │ ├── StringCopy.h │ │ │ │ ├── StyleContext.h │ │ │ │ ├── SubStyles.h │ │ │ │ └── WordList.h │ │ │ └── src │ │ │ │ ├── AutoComplete.h │ │ │ │ ├── CallTip.h │ │ │ │ ├── CaseConvert.h │ │ │ │ ├── CaseFolder.h │ │ │ │ ├── Catalogue.h │ │ │ │ ├── CellBuffer.h │ │ │ │ ├── CharClassify.h │ │ │ │ ├── ContractionState.h │ │ │ │ ├── DBCS.h │ │ │ │ ├── Decoration.h │ │ │ │ ├── Document.h │ │ │ │ ├── EditModel.h │ │ │ │ ├── EditView.h │ │ │ │ ├── Editor.h │ │ │ │ ├── ElapsedPeriod.h │ │ │ │ ├── ExternalLexer.h │ │ │ │ ├── FontQuality.h │ │ │ │ ├── Indicator.h │ │ │ │ ├── IntegerRectangle.h │ │ │ │ ├── KeyMap.h │ │ │ │ ├── License.txt │ │ │ │ ├── LineMarker.h │ │ │ │ ├── MarginView.h │ │ │ │ ├── Partitioning.h │ │ │ │ ├── PerLine.h │ │ │ │ ├── Position.h │ │ │ │ ├── PositionCache.h │ │ │ │ ├── RESearch.h │ │ │ │ ├── RunStyles.h │ │ │ │ ├── SciTE.properties │ │ │ │ ├── ScintillaBase.h │ │ │ │ ├── Selection.h │ │ │ │ ├── SparseVector.h │ │ │ │ ├── SplitVector.h │ │ │ │ ├── Style.h │ │ │ │ ├── UniConversion.h │ │ │ │ ├── UniqueString.h │ │ │ │ ├── ViewStyle.h │ │ │ │ └── XPM.h │ │ └── src │ │ │ ├── ListBoxQt.h │ │ │ ├── Qsci │ │ │ ├── qsciabstractapis.h │ │ │ ├── qsciapis.h │ │ │ ├── qscicommand.h │ │ │ ├── qscicommandset.h │ │ │ ├── qscidocument.h │ │ │ ├── qsciglobal.h │ │ │ ├── qscilexer.h │ │ │ ├── qscilexerasm.h │ │ │ ├── qscilexeravs.h │ │ │ ├── qscilexerbash.h │ │ │ ├── qscilexerbatch.h │ │ │ ├── qscilexercmake.h │ │ │ ├── qscilexercoffeescript.h │ │ │ ├── qscilexercpp.h │ │ │ ├── qscilexercsharp.h │ │ │ ├── qscilexercss.h │ │ │ ├── qscilexercustom.h │ │ │ ├── qscilexerd.h │ │ │ ├── qscilexerdiff.h │ │ │ ├── qscilexeredifact.h │ │ │ ├── qscilexerfortran.h │ │ │ ├── qscilexerfortran77.h │ │ │ ├── qscilexerhex.h │ │ │ ├── qscilexerhtml.h │ │ │ ├── qscilexeridl.h │ │ │ ├── qscilexerintelhex.h │ │ │ ├── qscilexerjava.h │ │ │ ├── qscilexerjavascript.h │ │ │ ├── qscilexerjson.h │ │ │ ├── qscilexerlua.h │ │ │ ├── qscilexermakefile.h │ │ │ ├── qscilexermarkdown.h │ │ │ ├── qscilexermasm.h │ │ │ ├── qscilexermatlab.h │ │ │ ├── qscilexernasm.h │ │ │ ├── qscilexeroctave.h │ │ │ ├── qscilexerpascal.h │ │ │ ├── qscilexerperl.h │ │ │ ├── qscilexerpo.h │ │ │ ├── qscilexerpostscript.h │ │ │ ├── qscilexerpov.h │ │ │ ├── qscilexerproperties.h │ │ │ ├── qscilexerpython.h │ │ │ ├── qscilexerruby.h │ │ │ ├── qscilexerspice.h │ │ │ ├── qscilexersql.h │ │ │ ├── qscilexersrec.h │ │ │ ├── qscilexertcl.h │ │ │ ├── qscilexertekhex.h │ │ │ ├── qscilexertex.h │ │ │ ├── qscilexerverilog.h │ │ │ ├── qscilexervhdl.h │ │ │ ├── qscilexerxml.h │ │ │ ├── qscilexeryaml.h │ │ │ ├── qscimacro.h │ │ │ ├── qsciprinter.h │ │ │ ├── qsciscintilla.h │ │ │ ├── qsciscintillabase.h │ │ │ ├── qscistyle.h │ │ │ └── qscistyledtext.h │ │ │ ├── SciAccessibility.h │ │ │ ├── SciClasses.h │ │ │ ├── ScintillaQt.h │ │ │ ├── features │ │ │ └── qscintilla2.prf │ │ │ ├── features_staticlib │ │ │ └── qscintilla2.prf │ │ │ ├── qscintilla.pro │ │ │ ├── qscintilla_cs.qm │ │ │ ├── qscintilla_cs.ts │ │ │ ├── qscintilla_de.qm │ │ │ ├── qscintilla_de.ts │ │ │ ├── qscintilla_es.qm │ │ │ ├── qscintilla_es.ts │ │ │ ├── qscintilla_fr.qm │ │ │ ├── qscintilla_fr.ts │ │ │ ├── qscintilla_pt_br.qm │ │ │ └── qscintilla_pt_br.ts │ └── lib │ │ ├── debug │ │ └── qscintilla2_qt6d.lib │ │ └── release │ │ └── qscintilla2_qt6.lib ├── qwindowkit-1.3.2 │ ├── .clang-format │ ├── .gitignore │ ├── .gitmodules │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── build.bat │ ├── docs │ │ ├── framelesshelper-related.md │ │ ├── images │ │ │ ├── linux.png │ │ │ ├── mac.png │ │ │ ├── vs-guide-1.png │ │ │ ├── vs-guide-2.png │ │ │ ├── vs-guide-3.png │ │ │ ├── win10.png │ │ │ └── win11.png │ │ └── visual-studio-guide.md │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── mainwindow │ │ │ ├── CMakeLists.txt │ │ │ ├── dark-style.qss │ │ │ ├── light-style.qss │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ └── mainwindow.qrc │ │ ├── qml │ │ │ ├── CMakeLists.txt │ │ │ ├── QWKButton.qml │ │ │ ├── main.cpp │ │ │ ├── main.qml │ │ │ └── qml.qrc │ │ └── shared │ │ │ ├── CMakeLists.txt │ │ │ ├── resources │ │ │ ├── app │ │ │ │ ├── example.icns │ │ │ │ ├── example.ico │ │ │ │ └── example.png │ │ │ ├── shared.qrc │ │ │ └── window-bar │ │ │ │ ├── close.svg │ │ │ │ ├── fullscreen.svg │ │ │ │ ├── maximize.svg │ │ │ │ ├── minimize.svg │ │ │ │ ├── more-line.svg │ │ │ │ ├── pin-fill.svg │ │ │ │ ├── pin.svg │ │ │ │ └── restore.svg │ │ │ └── widgetframe │ │ │ ├── CMakeLists.txt │ │ │ ├── windowbar.cpp │ │ │ ├── windowbar.h │ │ │ ├── windowbar_p.h │ │ │ ├── windowbutton.cpp │ │ │ ├── windowbutton.h │ │ │ └── windowbutton_p.h │ ├── qmsetup │ │ ├── .clang-format │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cmake │ │ │ ├── QMSetupAPI.cmake │ │ │ ├── doxygen │ │ │ │ ├── Doxyfile │ │ │ │ ├── doxygen-awesome-darkmode-toggle.js │ │ │ │ ├── doxygen-awesome-sidebar-only-darkmode-toggle.css │ │ │ │ ├── doxygen-awesome.css │ │ │ │ ├── extra-stylesheet.css │ │ │ │ └── header.html │ │ │ ├── find-modules │ │ │ │ ├── VC-LTL.cmake │ │ │ │ └── YY-Thunks.cmake │ │ │ ├── modules │ │ │ │ ├── CompilerOptions.cmake │ │ │ │ ├── Deploy.cmake │ │ │ │ ├── Doxygen.cmake │ │ │ │ ├── Filesystem.cmake │ │ │ │ ├── InstallPackage.cmake │ │ │ │ ├── Preprocess.cmake │ │ │ │ ├── Protobuf.cmake │ │ │ │ ├── Translate.cmake │ │ │ │ └── private │ │ │ │ │ ├── Generate.cmake │ │ │ │ │ ├── InstallPackage.cmake │ │ │ │ │ └── OperatingSystem.cmake │ │ │ ├── scripts │ │ │ │ ├── configure_file.cmake │ │ │ │ ├── copy.cmake │ │ │ │ ├── unixdeps.sh │ │ │ │ └── windeps.bat │ │ │ └── windows │ │ │ │ ├── WinCreateShortcut.vbs.in │ │ │ │ ├── WinManifest.manifest.in │ │ │ │ ├── WinResource.rc.in │ │ │ │ └── WinResource2.rc.in │ │ ├── docs │ │ │ └── core-command.md │ │ ├── include │ │ │ └── qmsetup │ │ │ │ ├── qmsetup_global.h │ │ │ │ └── shareddata.h │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── corecmd │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── sha-256.cpp │ │ │ ├── sha-256.h │ │ │ ├── utils.cpp │ │ │ ├── utils.h │ │ │ ├── utils_unix.cpp │ │ │ └── utils_win.cpp │ │ │ ├── qmsetupConfig.cmake.in │ │ │ └── syscmdline │ │ │ ├── .clang-format │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cmake │ │ │ └── winrc.cmake │ │ │ ├── docs │ │ │ ├── concepts.md │ │ │ └── examples.md │ │ │ ├── examples │ │ │ ├── CMakeLists.txt │ │ │ ├── del │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ ├── gcc │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ ├── git │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ └── mv │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ ├── include │ │ │ └── syscmdline │ │ │ │ ├── argument.h │ │ │ │ ├── command.h │ │ │ │ ├── global.h │ │ │ │ ├── helplayout.h │ │ │ │ ├── option.h │ │ │ │ ├── parser.h │ │ │ │ ├── parseresult.h │ │ │ │ ├── sharedbase.h │ │ │ │ ├── strings.h │ │ │ │ ├── symbol.h │ │ │ │ ├── system.h │ │ │ │ └── value.h │ │ │ ├── src │ │ │ ├── argument.cpp │ │ │ ├── argument_p.h │ │ │ ├── command.cpp │ │ │ ├── command_p.h │ │ │ ├── helplayout.cpp │ │ │ ├── helplayout_p.h │ │ │ ├── map_p.h │ │ │ ├── option.cpp │ │ │ ├── option_p.h │ │ │ ├── parser.cpp │ │ │ ├── parser_p.h │ │ │ ├── parseresult.cpp │ │ │ ├── parseresult_p.h │ │ │ ├── sharedbase.cpp │ │ │ ├── sharedbase_p.h │ │ │ ├── symbol.cpp │ │ │ ├── symbol_p.h │ │ │ ├── system.cpp │ │ │ ├── utils.cpp │ │ │ ├── utils_p.h │ │ │ └── value.cpp │ │ │ ├── syscmdlineConfig.cmake.in │ │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── basic │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ ├── share │ │ ├── install.cmake │ │ ├── msbuild │ │ │ └── QWindowKit.props.in │ │ └── qmake │ │ │ ├── QWKCore.pri.in │ │ │ ├── QWKQuick.pri.in │ │ │ └── QWKWidgets.pri.in │ └── src │ │ ├── CMakeLists.txt │ │ ├── QWindowKitConfig.cmake.in │ │ ├── core │ │ ├── CMakeLists.txt │ │ ├── contexts │ │ │ ├── abstractwindowcontext.cpp │ │ │ ├── abstractwindowcontext_p.h │ │ │ ├── cocoawindowcontext.mm │ │ │ ├── cocoawindowcontext_p.h │ │ │ ├── qtwindowcontext.cpp │ │ │ ├── qtwindowcontext_p.h │ │ │ ├── win32windowcontext.cpp │ │ │ └── win32windowcontext_p.h │ │ ├── kernel │ │ │ ├── nativeeventfilter.cpp │ │ │ ├── nativeeventfilter_p.h │ │ │ ├── sharedeventfilter.cpp │ │ │ ├── sharedeventfilter_p.h │ │ │ ├── winidchangeeventfilter.cpp │ │ │ └── winidchangeeventfilter_p.h │ │ ├── qwindowkit_linux.h │ │ ├── qwindowkit_windows.cpp │ │ ├── qwindowkit_windows.h │ │ ├── qwkglobal.cpp │ │ ├── qwkglobal.h │ │ ├── qwkglobal_p.h │ │ ├── shared │ │ │ ├── qwkwindowsextra_p.h │ │ │ ├── systemwindow_p.h │ │ │ └── windows10borderhandler_p.h │ │ ├── style │ │ │ ├── styleagent.cpp │ │ │ ├── styleagent.h │ │ │ ├── styleagent_linux.cpp │ │ │ ├── styleagent_mac.mm │ │ │ ├── styleagent_p.h │ │ │ └── styleagent_win.cpp │ │ ├── windowagentbase.cpp │ │ ├── windowagentbase.h │ │ ├── windowagentbase_p.h │ │ ├── windowitemdelegate.cpp │ │ └── windowitemdelegate_p.h │ │ ├── quick │ │ ├── CMakeLists.txt │ │ ├── quickitemdelegate.cpp │ │ ├── quickitemdelegate_p.h │ │ ├── quickwindowagent.cpp │ │ ├── quickwindowagent.h │ │ ├── quickwindowagent_mac.cpp │ │ ├── quickwindowagent_p.h │ │ ├── quickwindowagent_win.cpp │ │ ├── qwkquickglobal.cpp │ │ └── qwkquickglobal.h │ │ └── widgets │ │ ├── CMakeLists.txt │ │ ├── qwkwidgetsglobal.h │ │ ├── widgetitemdelegate.cpp │ │ ├── widgetitemdelegate_p.h │ │ ├── widgetwindowagent.cpp │ │ ├── widgetwindowagent.h │ │ ├── widgetwindowagent_mac.cpp │ │ ├── widgetwindowagent_p.h │ │ └── widgetwindowagent_win.cpp └── qwindowkit │ ├── bin │ ├── debug │ │ ├── QWKCored.dll │ │ └── QWKWidgetsd.dll │ └── release │ │ ├── QWKCore.dll │ │ └── QWKWidgets.dll │ ├── include │ ├── QWKCore │ │ ├── private │ │ │ ├── abstractwindowcontext_p.h │ │ │ ├── cocoawindowcontext_p.h │ │ │ ├── nativeeventfilter_p.h │ │ │ ├── qtwindowcontext_p.h │ │ │ ├── qwkglobal_p.h │ │ │ ├── qwkwindowsextra_p.h │ │ │ ├── sharedeventfilter_p.h │ │ │ ├── styleagent_p.h │ │ │ ├── systemwindow_p.h │ │ │ ├── win32windowcontext_p.h │ │ │ ├── windowagentbase_p.h │ │ │ ├── windowitemdelegate_p.h │ │ │ ├── windows10borderhandler_p.h │ │ │ └── winidchangeeventfilter_p.h │ │ ├── qwindowkit_linux.h │ │ ├── qwindowkit_windows.h │ │ ├── qwkconfig.h │ │ ├── qwkglobal.h │ │ ├── styleagent.h │ │ └── windowagentbase.h │ └── QWKWidgets │ │ ├── private │ │ ├── widgetitemdelegate_p.h │ │ └── widgetwindowagent_p.h │ │ ├── qwkwidgetsglobal.h │ │ └── widgetwindowagent.h │ ├── lib │ ├── debug │ │ ├── QWKCored.lib │ │ ├── QWKWidgetsd.lib │ │ └── cmake │ │ │ └── QWindowKit │ │ │ ├── QWindowKitConfig.cmake │ │ │ ├── QWindowKitConfigVersion.cmake │ │ │ ├── QWindowKitTargets-debug.cmake │ │ │ ├── QWindowKitTargets-release.cmake │ │ │ └── QWindowKitTargets.cmake │ └── release │ │ ├── QWKCore.lib │ │ ├── QWKWidgets.lib │ │ └── cmake │ │ └── QWindowKit │ │ ├── QWindowKitConfig.cmake │ │ ├── QWindowKitConfigVersion.cmake │ │ ├── QWindowKitTargets-debug.cmake │ │ ├── QWindowKitTargets-release.cmake │ │ └── QWindowKitTargets.cmake │ └── share │ └── QWindowKit │ ├── msbuild │ └── QWindowKit.props │ └── qmake │ ├── QWKCore.pri │ ├── QWKQuick.pri │ └── QWKWidgets.pri ├── CMakeLists.txt ├── FluControls ├── CMakeLists.txt ├── FliListViewItem.cpp ├── FliListViewItem.h ├── FluAction.cpp ├── FluAction.h ├── FluAmPmView.cpp ├── FluAmPmView.h ├── FluAppBarButton.cpp ├── FluAppBarButton.h ├── FluAppBarToggleButton.cpp ├── FluAppBarToggleButton.h ├── FluAutoSuggestBox.cpp ├── FluAutoSuggestBox.h ├── FluBorder.cpp ├── FluBorder.h ├── FluBusyProgressRing.cpp ├── FluBusyProgressRing.h ├── FluCalendarDatePicker.cpp ├── FluCalendarDatePicker.h ├── FluCalendarDef.h ├── FluCalendarItem.cpp ├── FluCalendarItem.h ├── FluCalendarSelectDayView.cpp ├── FluCalendarSelectDayView.h ├── FluCalendarSelectMonthView.cpp ├── FluCalendarSelectMonthView.h ├── FluCalendarSelectYearView.cpp ├── FluCalendarSelectYearView.h ├── FluCalendarView.cpp ├── FluCalendarView.h ├── FluCalendarViewTitle.cpp ├── FluCalendarViewTitle.h ├── FluCheckBox.cpp ├── FluCheckBox.h ├── FluCircleDot.cpp ├── FluCircleDot.h ├── FluCodeBox.cpp ├── FluCodeBox.h ├── FluCodeExpander.cpp ├── FluCodeExpander.h ├── FluColorButton.cpp ├── FluColorButton.h ├── FluColorFlyout.cpp ├── FluColorFlyout.h ├── FluColorLabel.cpp ├── FluColorLabel.h ├── FluColorPickerButton.cpp ├── FluColorPickerButton.h ├── FluColorView.cpp ├── FluColorView.h ├── FluColorViewGradient.cpp ├── FluColorViewGradient.h ├── FluColorViewHHandle.cpp ├── FluColorViewHHandle.h ├── FluColorViewVHandle.cpp ├── FluColorViewVHandle.h ├── FluComboBox.cpp ├── FluComboBox.h ├── FluComboBoxEx.cpp ├── FluComboBoxEx.h ├── FluComboBoxTextItem.cpp ├── FluComboBoxTextItem.h ├── FluCommandBar.cpp ├── FluCommandBar.h ├── FluCommandBarIconItem.cpp ├── FluCommandBarIconItem.h ├── FluCommandBarIconTextItem.cpp ├── FluCommandBarIconTextItem.h ├── FluCommandBarItem.cpp ├── FluCommandBarItem.h ├── FluCommandBarItemType.h ├── FluCommandBarSplitItem.cpp ├── FluCommandBarSplitItem.h ├── FluCompleterMenu.cpp ├── FluCompleterMenu.h ├── FluConfirmFlyout.cpp ├── FluConfirmFlyout.h ├── FluControls.vcxproj ├── FluControls.vcxproj.filters ├── FluDatePicker.cpp ├── FluDatePicker.h ├── FluDatePickerView.cpp ├── FluDatePickerView.h ├── FluDatePickerViewMask.cpp ├── FluDatePickerViewMask.h ├── FluDef.h ├── FluDisplayBox.cpp ├── FluDisplayBox.h ├── FluDisplayBoxEx.cpp ├── FluDisplayBoxEx.h ├── FluDisplayIconBox.cpp ├── FluDisplayIconBox.h ├── FluDoubleSpinBox.cpp ├── FluDoubleSpinBox.h ├── FluDropDownButton.cpp ├── FluDropDownButton.h ├── FluExpander.cpp ├── FluExpander.h ├── FluFWScrollView.cpp ├── FluFWScrollView.h ├── FluFlowLayout.cpp ├── FluFlowLayout.h ├── FluFrameLessWidget.cpp ├── FluFrameLessWidget.h ├── FluGraphicalButton.cpp ├── FluGraphicalButton.h ├── FluHCard.cpp ├── FluHCard.h ├── FluHFlipView.cpp ├── FluHFlipView.h ├── FluHNavigationFlyIconTextItem.cpp ├── FluHNavigationFlyIconTextItem.h ├── FluHNavigationIconTextItem.cpp ├── FluHNavigationIconTextItem.h ├── FluHNavigationItem.cpp ├── FluHNavigationItem.h ├── FluHNavigationMoreItem.cpp ├── FluHNavigationMoreItem.h ├── FluHNavigationSearchItem.cpp ├── FluHNavigationSearchItem.h ├── FluHNavigationSettingsItem.cpp ├── FluHNavigationSettingsItem.h ├── FluHNavigationView.cpp ├── FluHNavigationView.h ├── FluHRadioGroupBox.cpp ├── FluHRadioGroupBox.h ├── FluHScrollView.cpp ├── FluHScrollView.h ├── FluHSplitLine.cpp ├── FluHSplitLine.h ├── FluHyperLinkButton.cpp ├── FluHyperLinkButton.h ├── FluIconButton.cpp ├── FluIconButton.h ├── FluImageBox.cpp ├── FluImageBox.h ├── FluIndicatorMenuItemDeleage.cpp ├── FluIndicatorMenuItemDeleage.h ├── FluInfoBadge.cpp ├── FluInfoBadge.h ├── FluInfoBarMgr.cpp ├── FluInfoBarMgr.h ├── FluIntValidator.cpp ├── FluIntValidator.h ├── FluIntructions.cpp ├── FluIntructions.h ├── FluLabel.cpp ├── FluLabel.h ├── FluLineEdit.cpp ├── FluLineEdit.h ├── FluListView.cpp ├── FluListView.h ├── FluListViewItemDelegate.cpp ├── FluListViewItemDelegate.h ├── FluLoopView.cpp ├── FluLoopView.h ├── FluMSNavigationItem.cpp ├── FluMSNavigationItem.h ├── FluMSNavigationView.cpp ├── FluMSNavigationView.h ├── FluMSWindow.cpp ├── FluMSWindow.h ├── FluMenu.cpp ├── FluMenu.h ├── FluMenuAniMgr.cpp ├── FluMenuAniMgr.h ├── FluMenuAniType.h ├── FluMenuBar.cpp ├── FluMenuBar.h ├── FluMenuItemDelegate.cpp ├── FluMenuItemDelegate.h ├── FluMessageBox.cpp ├── FluMessageBox.h ├── FluPPushButton.cpp ├── FluPPushButton.h ├── FluPagination.cpp ├── FluPagination.h ├── FluPaginationItem.cpp ├── FluPaginationItem.h ├── FluPasswordBox.cpp ├── FluPasswordBox.h ├── FluPivot.cpp ├── FluPivot.h ├── FluPivotTitleBar.cpp ├── FluPivotTitleBar.h ├── FluPivotTitleBarItem.cpp ├── FluPivotTitleBarItem.h ├── FluProgressBar.cpp ├── FluProgressBar.h ├── FluProgressRing.cpp ├── FluProgressRing.h ├── FluPushButton.cpp ├── FluPushButton.h ├── FluRadioButton.cpp ├── FluRadioButton.h ├── FluRatingControl.cpp ├── FluRatingControl.h ├── FluRepeatButton.cpp ├── FluRepeatButton.h ├── FluRotationButton.cpp ├── FluRotationButton.h ├── FluRoundMenu.cpp ├── FluRoundMenu.h ├── FluRoundMenuView.cpp ├── FluRoundMenuView.h ├── FluScaleButton.cpp ├── FluScaleButton.h ├── FluScrollArea.cpp ├── FluScrollArea.h ├── FluScrollBar.cpp ├── FluScrollBar.h ├── FluScrollBarArrowButton.cpp ├── FluScrollBarArrowButton.h ├── FluScrollBarHandle.cpp ├── FluScrollBarHandle.h ├── FluScrollBarTrunk.cpp ├── FluScrollBarTrunk.h ├── FluScrollDelegate.cpp ├── FluScrollDelegate.h ├── FluSearchLineEdit.cpp ├── FluSearchLineEdit.h ├── FluSegmented.cpp ├── FluSegmented.h ├── FluSegmentedItem.cpp ├── FluSegmentedItem.h ├── FluSettingsLabelBox.cpp ├── FluSettingsLabelBox.h ├── FluSettingsSelectBox.cpp ├── FluSettingsSelectBox.h ├── FluSettingsVersionBox.cpp ├── FluSettingsVersionBox.h ├── FluShortInfoBar.cpp ├── FluShortInfoBar.h ├── FluShortcutMenuItemDelegate.cpp ├── FluShortcutMenuItemDelegate.h ├── FluShortcutPicker.cpp ├── FluShortcutPicker.h ├── FluShortcutPickerDlg.cpp ├── FluShortcutPickerDlg.h ├── FluSlider.cpp ├── FluSlider.h ├── FluSpinBox.cpp ├── FluSpinBox.h ├── FluSplitButton.cpp ├── FluSplitButton.h ├── FluStackedLayout.cpp ├── FluStackedLayout.h ├── FluStar.cpp ├── FluStar.h ├── FluStyleButton.cpp ├── FluStyleButton.h ├── FluSubMenuItemWidget.cpp ├── FluSubMenuItemWidget.h ├── FluTabBar.cpp ├── FluTabBar.h ├── FluTabBarContent.cpp ├── FluTabBarContent.h ├── FluTabBarItem.cpp ├── FluTabBarItem.h ├── FluTabView.cpp ├── FluTabView.h ├── FluTabWidget.cpp ├── FluTabWidget.h ├── FluTableItemDelegate.cpp ├── FluTableItemDelegate.h ├── FluTableView.cpp ├── FluTableView.h ├── FluTeachingTip.cpp ├── FluTeachingTip.h ├── FluTeachingTipContent.cpp ├── FluTeachingTipContent.h ├── FluTextEdit.cpp ├── FluTextEdit.h ├── FluTextEditWrap.cpp ├── FluTextEditWrap.h ├── FluTextToggleSwitchEx.cpp ├── FluTextToggleSwitchEx.h ├── FluThread.cpp ├── FluThread.h ├── FluTimeLine.cpp ├── FluTimeLine.h ├── FluTimeLineIcon.cpp ├── FluTimeLineIcon.h ├── FluTimeLineItem.cpp ├── FluTimeLineItem.h ├── FluTimePicker24H.cpp ├── FluTimePicker24H.h ├── FluTimePicker24HView.cpp ├── FluTimePicker24HView.h ├── FluTimePickerAP.cpp ├── FluTimePickerAP.h ├── FluTimePickerAPView.cpp ├── FluTimePickerAPView.h ├── FluTimePickerViewMask.cpp ├── FluTimePickerViewMask.h ├── FluToggleButton.cpp ├── FluToggleButton.h ├── FluToggleSwitch.cpp ├── FluToggleSwitch.h ├── FluToggleSwitchEx.cpp ├── FluToggleSwitchEx.h ├── FluTreeView.cpp ├── FluTreeView.h ├── FluTreeViewItemDelegate.cpp ├── FluTreeViewItemDelegate.h ├── FluTriangle.cpp ├── FluTriangle.h ├── FluVCard.cpp ├── FluVCard.h ├── FluVFlipView.cpp ├── FluVFlipView.h ├── FluVFlyout.cpp ├── FluVFlyout.h ├── FluVNavigationFlyIconTextItem.cpp ├── FluVNavigationFlyIconTextItem.h ├── FluVNavigationIconTextItem.cpp ├── FluVNavigationIconTextItem.h ├── FluVNavigationItem.cpp ├── FluVNavigationItem.h ├── FluVNavigationMenuItem.cpp ├── FluVNavigationMenuItem.h ├── FluVNavigationSearchItem.cpp ├── FluVNavigationSearchItem.h ├── FluVNavigationSettingsItem.cpp ├── FluVNavigationSettingsItem.h ├── FluVNavigationView.cpp ├── FluVNavigationView.h ├── FluVRadioGroupBox.cpp ├── FluVRadioGroupBox.h ├── FluVScrollView.cpp ├── FluVScrollView.h ├── FluVSplitLine.cpp ├── FluVSplitLine.h ├── FluValueObject.cpp ├── FluValueObject.h ├── FluWidget.cpp ├── FluWidget.h ├── FluWindowKitTitleBar.cpp ├── FluWindowKitTitleBar.h ├── FluWindowKitWidget.cpp ├── FluWindowKitWidget.h ├── FluWindowkitButton.cpp └── FluWindowkitButton.h ├── FluExamples ├── CMakeLists.txt ├── FluAllGlobalColorDemo.cpp ├── FluAllGlobalColorDemo.h ├── FluAnimationDemo.cpp ├── FluAnimationDemo.h ├── FluBusyProgressRingDemo.cpp ├── FluBusyProgressRingDemo.h ├── FluButtonDemo.cpp ├── FluButtonDemo.h ├── FluCalendarDatePickerDemo.cpp ├── FluCalendarDatePickerDemo.h ├── FluCalendarViewDemo.cpp ├── FluCalendarViewDemo.h ├── FluChangeBgDemo.cpp ├── FluChangeBgDemo.h ├── FluCheckBoxDemo.cpp ├── FluCheckBoxDemo.h ├── FluColorDemo.cpp ├── FluColorDemo.h ├── FluColorViewDemo.cpp ├── FluColorViewDemo.h ├── FluComboBoxDemo.cpp ├── FluComboBoxDemo.h ├── FluCommandBarDemo.cpp ├── FluCommandBarDemo.h ├── FluDisplay16.cpp ├── FluDisplay16.h ├── FluDisplayBoxDemo.cpp ├── FluDisplayBoxDemo.h ├── FluDisplayCodeDemo.cpp ├── FluDisplayCodeDemo.h ├── FluDisplayIconBoxDemo.cpp ├── FluDisplayIconBoxDemo.h ├── FluDropDownButtonDemo.cpp ├── FluDropDownButtonDemo.h ├── FluExamples.vcxproj ├── FluExamples.vcxproj.filters ├── FluExamples.vcxproj.user ├── FluExpandDemo.cpp ├── FluExpandDemo.h ├── FluFlipViewDemo.cpp ├── FluFlipViewDemo.h ├── FluFlowLayoutDemo.cpp ├── FluFlowLayoutDemo.h ├── FluFlyoutDemo.cpp ├── FluFlyoutDemo.h ├── FluFrameLessDemo.cpp ├── FluFrameLessDemo.h ├── FluHNavigationViewDemo.cpp ├── FluHNavigationViewDemo.h ├── FluInfoBadgeDemo.cpp ├── FluInfoBadgeDemo.h ├── FluInfoBarDemo.cpp ├── FluInfoBarDemo.h ├── FluIntructionsDemo.cpp ├── FluIntructionsDemo.h ├── FluLineEditDemo.cpp ├── FluLineEditDemo.h ├── FluLineSeriesDemo.cpp ├── FluLineSeriesDemo.h ├── FluListViewDemo.cpp ├── FluListViewDemo.h ├── FluLoopViewDemo.cpp ├── FluLoopViewDemo.h ├── FluMSWindowDemo.cpp ├── FluMSWindowDemo.h ├── FluMenuBarDemo.cpp ├── FluMenuBarDemo.h ├── FluMenuDemo.cpp ├── FluMenuDemo.h ├── FluMultiLineTextDemo.cpp ├── FluMultiLineTextDemo.h ├── FluPaginationDemo.cpp ├── FluPaginationDemo.h ├── FluPasswordBoxDemo.cpp ├── FluPasswordBoxDemo.h ├── FluPieSeriesDemo.cpp ├── FluPieSeriesDemo.h ├── FluProgressBarDemo.cpp ├── FluProgressBarDemo.h ├── FluProgressRingDemo.cpp ├── FluProgressRingDemo.h ├── FluQrCodeDemo.cpp ├── FluQrCodeDemo.h ├── FluRadioButtonDemo.cpp ├── FluRadioButtonDemo.h ├── FluRatingControlDemo.cpp ├── FluRatingControlDemo.h ├── FluRoundMenuDemo.cpp ├── FluRoundMenuDemo.h ├── FluScintillaDemo.cpp ├── FluScintillaDemo.h ├── FluScrollAreaDemo.cpp ├── FluScrollAreaDemo.h ├── FluSegmentedDemo.cpp ├── FluSegmentedDemo.h ├── FluSettingsVersionBoxDemo.cpp ├── FluSettingsVersionBoxDemo.h ├── FluShortcutPickerDemo.cpp ├── FluShortcutPickerDemo.h ├── FluSlideWindowDemo.cpp ├── FluSlideWindowDemo.h ├── FluSliderDemo.cpp ├── FluSliderDemo.h ├── FluSpinBoxDemo.cpp ├── FluSpinBoxDemo.h ├── FluSplitButtonDemo.cpp ├── FluSplitButtonDemo.h ├── FluSplitterDemo.cpp ├── FluSplitterDemo.h ├── FluTabBarDemo.cpp ├── FluTabBarDemo.h ├── FluTabDemo.cpp ├── FluTabDemo.h ├── FluTabViewDemo.cpp ├── FluTabViewDemo.h ├── FluTableViewDemo.cpp ├── FluTableViewDemo.h ├── FluTableViewExDemo.cpp ├── FluTableViewExDemo.h ├── FluTemplateDemo.cpp ├── FluTemplateDemo.h ├── FluTextAreaDemo.cpp ├── FluTextAreaDemo.h ├── FluTextEditDemo.cpp ├── FluTextEditDemo.h ├── FluThreadDemo.cpp ├── FluThreadDemo.h ├── FluTimeLineDemo.cpp ├── FluTimeLineDemo.h ├── FluTimeLineIconDemo.cpp ├── FluTimeLineIconDemo.h ├── FluTimePickerDemo.cpp ├── FluTimePickerDemo.h ├── FluToggleSwitchDemo.cpp ├── FluToggleSwitchDemo.h ├── FluTreeViewDemo.cpp ├── FluTreeViewDemo.h ├── FluTriangleDemo.cpp ├── FluTriangleDemo.h ├── FluVNavigationViewDemo.cpp ├── FluVNavigationViewDemo.h └── main.cpp ├── FluIconTool ├── CMakeLists.txt ├── FluIconTool.vcxproj ├── FluIconTool.vcxproj.filters ├── FluIconTool.vcxproj.user ├── FluIconToolWidget.cpp ├── FluIconToolWidget.h ├── FluTempDemo.cpp ├── FluTempDemo.h └── main.cpp ├── FluUtils ├── CMakeLists.txt ├── FluConfigUtils.cpp ├── FluConfigUtils.h ├── FluIconUtils.cpp ├── FluIconUtils.h ├── FluLogUtils.cpp ├── FluLogUtils.h ├── FluObjectPtrUtils.cpp ├── FluObjectPtrUtils.h ├── FluStyleSheetUitls.cpp ├── FluStyleSheetUitls.h ├── FluThemeUtils.cpp ├── FluThemeUtils.h ├── FluUtils.h ├── FluUtils.vcxproj ├── FluUtils.vcxproj.filters ├── FluUtils.vcxproj.user └── FluUtilsFonts.qrc ├── FluWinGallery ├── CMakeLists.txt ├── FluAEmptyPage.cpp ├── FluAEmptyPage.h ├── FluATitlePage.cpp ├── FluATitlePage.h ├── FluAllSamplesPage.cpp ├── FluAllSamplesPage.h ├── FluAppBarButtonPage.cpp ├── FluAppBarButtonPage.h ├── FluAppBarToggleButtonPage.cpp ├── FluAppBarToggleButtonPage.h ├── FluAutoSuggestBoxPage.cpp ├── FluAutoSuggestBoxPage.h ├── FluBasicInputPage.cpp ├── FluBasicInputPage.h ├── FluBorderPage.cpp ├── FluBorderPage.h ├── FluButtonPage.cpp ├── FluButtonPage.h ├── FluCalendarDatePickerPage.cpp ├── FluCalendarDatePickerPage.h ├── FluCalendarViewPage.cpp ├── FluCalendarViewPage.h ├── FluCheckBoxPage.cpp ├── FluCheckBoxPage.h ├── FluCollectionsPage.cpp ├── FluCollectionsPage.h ├── FluColorPickerPage.cpp ├── FluColorPickerPage.h ├── FluComboBoxPage.cpp ├── FluComboBoxPage.h ├── FluContentDialogPage.cpp ├── FluContentDialogPage.h ├── FluDateAndTimePage.cpp ├── FluDateAndTimePage.h ├── FluDatePickerPage.cpp ├── FluDatePickerPage.h ├── FluDialogsAndFlyoutsPage.cpp ├── FluDialogsAndFlyoutsPage.h ├── FluDropDownButtonPage.cpp ├── FluDropDownButtonPage.h ├── FluExpanderPage.cpp ├── FluExpanderPage.h ├── FluFlipViewPage.cpp ├── FluFlipViewPage.h ├── FluFlyoutPage.cpp ├── FluFlyoutPage.h ├── FluGalleryWindow.cpp ├── FluGalleryWindow.h ├── FluHomePage.cpp ├── FluHomePage.h ├── FluHomePageTitle.cpp ├── FluHomePageTitle.h ├── FluHyperLinkButtonPage.cpp ├── FluHyperLinkButtonPage.h ├── FluIconsPage.cpp ├── FluIconsPage.h ├── FluInfoBadgePage.cpp ├── FluInfoBadgePage.h ├── FluInfoBarPage.cpp ├── FluInfoBarPage.h ├── FluLayoutPage.cpp ├── FluLayoutPage.h ├── FluListViewPage.cpp ├── FluListViewPage.h ├── FluMediaPage.cpp ├── FluMediaPage.h ├── FluMenuAndToolBarsPage.cpp ├── FluMenuAndToolBarsPage.h ├── FluMenuBarPage.cpp ├── FluMenuBarPage.h ├── FluNavigationPage.cpp ├── FluNavigationPage.h ├── FluNumberBoxPage.cpp ├── FluNumberBoxPage.h ├── FluPasswordBoxPage.cpp ├── FluPasswordBoxPage.h ├── FluPivotPage.cpp ├── FluPivotPage.h ├── FluProgressBarPage.cpp ├── FluProgressBarPage.h ├── FluProgressRingPage.cpp ├── FluProgressRingPage.h ├── FluRadioButtonPage.cpp ├── FluRadioButtonPage.h ├── FluRadioButtonsPage.cpp ├── FluRadioButtonsPage.h ├── FluRatingControlPage.cpp ├── FluRatingControlPage.h ├── FluRepeatButtonPage.cpp ├── FluRepeatButtonPage.h ├── FluScrollViewPage.cpp ├── FluScrollViewPage.h ├── FluScrollingPage.cpp ├── FluScrollingPage.h ├── FluSettingPage.cpp ├── FluSettingPage.h ├── FluSliderPage.cpp ├── FluSliderPage.h ├── FluSplitButtonPage.cpp ├── FluSplitButtonPage.h ├── FluStatusAndInfoPage.cpp ├── FluStatusAndInfoPage.h ├── FluTableViewPage.cpp ├── FluTableViewPage.h ├── FluTextBoxPage.cpp ├── FluTextBoxPage.h ├── FluTextPage.cpp ├── FluTextPage.h ├── FluTimePickerPage.cpp ├── FluTimePickerPage.h ├── FluToggleButtonPage.cpp ├── FluToggleButtonPage.h ├── FluToggleSwitchPage.cpp ├── FluToggleSwitchPage.h ├── FluTreeViewPage.cpp ├── FluTreeViewPage.h ├── FluTypeographyPage.cpp ├── FluTypeographyPage.h ├── FluWinGallery.rc ├── FluWinGallery.vcxproj ├── FluWinGallery.vcxproj.filters ├── FluWinGallery.vcxproj.user ├── favicon.ico ├── main.cpp └── resource.h ├── FluentUI.sln ├── LICENSE.LGPL ├── README.md ├── README_zh_CN.md ├── StyleSheet ├── custom │ ├── FluAEmptyPage.qss │ ├── FluATitlePage.qss │ ├── FluAllSamplesPage.qss │ ├── FluAmPmView.qss │ ├── FluAppBarButton.qss │ ├── FluAppBarButtonPage.qss │ ├── FluAppBarToggleButton.qss │ ├── FluAppBarToggleButtonPage.qss │ ├── FluAutoSuggestBox.qss │ ├── FluAutoSuggestBoxPage.qss │ ├── FluBasicInputPage.qss │ ├── FluBorder.qss │ ├── FluBorderPage.qss │ ├── FluBusyProgressRing.qss │ ├── FluButtonPage.qss │ ├── FluCalendarDatePicker.qss │ ├── FluCalendarDatePickerPage.qss │ ├── FluCalendarMonthView.qss │ ├── FluCalendarSelectMonthView.qss │ ├── FluCalendarSelectYearView.qss │ ├── FluCalendarView.qss │ ├── FluCalendarViewPage.qss │ ├── FluCalendarViewTitle.qss │ ├── FluCalendarViewWeakTitle.qss │ ├── FluCheckBox.qss │ ├── FluCheckBoxPage.qss │ ├── FluCircleDot.qss │ ├── FluCodeBox.qss │ ├── FluCollectionsPage.qss │ ├── FluColorButton.qss │ ├── FluColorFlyout.qss │ ├── FluColorLabel.qss │ ├── FluColorView.qss │ ├── FluComboBox.qss │ ├── FluComboBoxEx.qss │ ├── FluComboBoxPage.qss │ ├── FluConfirmFlyout.qss │ ├── FluContentDialogPage.qss │ ├── FluDateAndTimePage.qss │ ├── FluDatePicker.qss │ ├── FluDatePickerPage.qss │ ├── FluDatePickerView.qss │ ├── FluDialogsAndFlyoutsPage.qss │ ├── FluDisplayBox.qss │ ├── FluDisplayBoxEx.qss │ ├── FluDisplayIconBox.qss │ ├── FluDoubleSpinBox.qss │ ├── FluDropDownButton.qss │ ├── FluDropDownButtonPage.qss │ ├── FluExpander.qss │ ├── FluExpanderPage.qss │ ├── FluFWScrollView.qss │ ├── FluFlipView.qss │ ├── FluFlipViewPage.qss │ ├── FluFlyoutPage.qss │ ├── FluGalleryWindow.qss │ ├── FluGraphicalButton.qss │ ├── FluHCard.qss │ ├── FluHFlipView.qss │ ├── FluHNavigationDemo.qss │ ├── FluHNavigationFlyIconTextItem.qss │ ├── FluHNavigationIconTextItem.qss │ ├── FluHNavigationMoreItem.qss │ ├── FluHNavigationSettingsItem.qss │ ├── FluHNavigationView.qss │ ├── FluHScrollView.qss │ ├── FluHSplitLine.qss │ ├── FluHomePage.qss │ ├── FluHomePageTitle.qss │ ├── FluHyperLinkButton.qss │ ├── FluHyperLinkButtonPage.qss │ ├── FluIconButton.qss │ ├── FluIconsPage.qss │ ├── FluInfoBadge.qss │ ├── FluInfoBadgePage.qss │ ├── FluInfoBarPage.qss │ ├── FluLabel.qss │ ├── FluLayoutPage.qss │ ├── FluLineEdit.qss │ ├── FluListView.qss │ ├── FluListViewPage.qss │ ├── FluLoopView.qss │ ├── FluMSNavigationItem.qss │ ├── FluMSNavigationView.qss │ ├── FluMSPage.qss │ ├── FluMSWindow.qss │ ├── FluMediaPage.qss │ ├── FluMenu.qss │ ├── FluMenuAndToolBarsPage.qss │ ├── FluMenuBar.qss │ ├── FluMenuBarItem.qss │ ├── FluMenuBarPage.qss │ ├── FluMenuDemo.qss │ ├── FluMessageBox.qss │ ├── FluNavigationItem.qss │ ├── FluNavigationPage.qss │ ├── FluNumberBoxPage.qss │ ├── FluPaginationItem.qss │ ├── FluPasswordBox.qss │ ├── FluPasswordBoxPage.qss │ ├── FluPivot.qss │ ├── FluPivotPage.qss │ ├── FluPivotTitleBar.qss │ ├── FluPivotTitleBarItem.qss │ ├── FluProgressBar.qss │ ├── FluProgressBarPage.qss │ ├── FluProgressRingPage.qss │ ├── FluPushButton.qss │ ├── FluRadioButton.qss │ ├── FluRadioButtonPage.qss │ ├── FluRadioButtonsPage.qss │ ├── FluRatingControl.qss │ ├── FluRatingControlPage.qss │ ├── FluRepeatButton.qss │ ├── FluRepeatButtonPage.qss │ ├── FluRotationButton.qss │ ├── FluRoundMenu.qss │ ├── FluRoundMenuView.qss │ ├── FluScaleButton.qss │ ├── FluScrollBar.qss │ ├── FluScrollViewPage.qss │ ├── FluScrollingPage.qss │ ├── FluSearchLineEdit.qss │ ├── FluSegmented.qss │ ├── FluSegmentedItem.qss │ ├── FluSettingPage.qss │ ├── FluSettingsLabelBox.qss │ ├── FluSettingsSelectBox.qss │ ├── FluSettingsVersionBox.qss │ ├── FluShortInfoBar.qss │ ├── FluShortcutPicker.qss │ ├── FluShortcutPickerDlg.qss │ ├── FluSlider.qss │ ├── FluSliderPage.qss │ ├── FluSpinBox.qss │ ├── FluSplitButton.qss │ ├── FluSplitButtonPage.qss │ ├── FluStatusAndInfoPage.qss │ ├── FluStyleButton.qss │ ├── FluTabBar.qss │ ├── FluTabBarContent.qss │ ├── FluTabBarItem.qss │ ├── FluTabView.qss │ ├── FluTabWidget.qss │ ├── FluTableView.qss │ ├── FluTableViewPage.qss │ ├── FluTemplateDemo.qss │ ├── FluTextBoxPage.qss │ ├── FluTextEdit.qss │ ├── FluTextPage.qss │ ├── FluTimePicker24H.qss │ ├── FluTimePicker24HView.qss │ ├── FluTimePickerAP.qss │ ├── FluTimePickerAPView.qss │ ├── FluTimePickerPage.qss │ ├── FluToggleButton.qss │ ├── FluToggleButtonPage.qss │ ├── FluToggleSwitch.qss │ ├── FluToggleSwitchEx.qss │ ├── FluToggleSwitchPage.qss │ ├── FluTreeView.qss │ ├── FluTreeViewPage.qss │ ├── FluTypeographyPage.qss │ ├── FluVCard.qss │ ├── FluVFlipView.qss │ ├── FluVFlyout.qss │ ├── FluVNavigationFlyIconTextItem.qss │ ├── FluVNavigationIconTextItem.qss │ ├── FluVNavigationMenuItem.qss │ ├── FluVNavigationSearchItem.qss │ ├── FluVNavigationSettingsItem.qss │ ├── FluVNavigationView.qss │ ├── FluVRadioGroupBox.qss │ ├── FluVScrollView.qss │ ├── FluVSplitLine.qss │ ├── FluWindowKitTitleBar.qss │ └── FluWindowKitWidget.qss ├── dark │ ├── FluAEmptyPage.qss │ ├── FluATitlePage.qss │ ├── FluAllSamplesPage.qss │ ├── FluAmPmView.qss │ ├── FluAppBarButton.qss │ ├── FluAppBarButtonPage.qss │ ├── FluAppBarToggleButton.qss │ ├── FluAppBarToggleButtonPage.qss │ ├── FluAutoSuggestBox.qss │ ├── FluAutoSuggestBoxPage.qss │ ├── FluBasicInputPage.qss │ ├── FluBorder.qss │ ├── FluBorderPage.qss │ ├── FluBusyProgressRing.qss │ ├── FluButtonPage.qss │ ├── FluCalendarDatePicker.qss │ ├── FluCalendarDatePickerPage.qss │ ├── FluCalendarMonthView.qss │ ├── FluCalendarSelectMonthView.qss │ ├── FluCalendarSelectYearView.qss │ ├── FluCalendarView.qss │ ├── FluCalendarViewPage.qss │ ├── FluCalendarViewTitle.qss │ ├── FluCalendarViewWeakTitle.qss │ ├── FluCheckBox.qss │ ├── FluCheckBoxPage.qss │ ├── FluCircleDot.qss │ ├── FluCodeBox.qss │ ├── FluCollectionsPage.qss │ ├── FluColorButton.qss │ ├── FluColorFlyout.qss │ ├── FluColorLabel.qss │ ├── FluColorPickerPage.qss │ ├── FluColorView.qss │ ├── FluComboBox.qss │ ├── FluComboBoxEx.qss │ ├── FluComboBoxPage.qss │ ├── FluCommandBar.qss │ ├── FluCommandBarIconItem.qss │ ├── FluCommandBarIconTextItem.qss │ ├── FluConfirmFlyout.qss │ ├── FluContentDialogPage.qss │ ├── FluDateAndTimePage.qss │ ├── FluDatePicker.qss │ ├── FluDatePickerPage.qss │ ├── FluDatePickerView.qss │ ├── FluDialogsAndFlyoutsPage.qss │ ├── FluDisplayBox.qss │ ├── FluDisplayBoxEx.qss │ ├── FluDisplayIconBox.qss │ ├── FluDoubleSpinBox.qss │ ├── FluDropDownButton.qss │ ├── FluDropDownButtonPage.qss │ ├── FluExpander.qss │ ├── FluExpanderPage.qss │ ├── FluFWScrollView.qss │ ├── FluFlipView.qss │ ├── FluFlipViewPage.qss │ ├── FluFlyoutPage.qss │ ├── FluGalleryWindow.qss │ ├── FluGraphicalButton.qss │ ├── FluHCard.qss │ ├── FluHSplitLine.qss │ ├── FluHomePage.qss │ ├── FluHomePageTitle.qss │ ├── FluHyperLinkButton.qss │ ├── FluHyperLinkButtonPage.qss │ ├── FluIconButton.qss │ ├── FluIconsPage.qss │ ├── FluInfoBadge.qss │ ├── FluInfoBadgePage.qss │ ├── FluInfoBarPage.qss │ ├── FluLabel.qss │ ├── FluLayoutPage.qss │ ├── FluLineEdit.qss │ ├── FluListView.qss │ ├── FluListViewPage.qss │ ├── FluLoopView.qss │ ├── FluMSNavigationItem.qss │ ├── FluMSNavigationView.qss │ ├── FluMSPage.qss │ ├── FluMSWindow.qss │ ├── FluMediaPage.qss │ ├── FluMenu.qss │ ├── FluMenuAndToolBarsPage.qss │ ├── FluMenuBar.qss │ ├── FluMenuBarPage.qss │ ├── FluMenuDemo.qss │ ├── FluMessageBox.qss │ ├── FluNavigationItem.qss │ ├── FluNavigationPage.qss │ ├── FluNumberBoxPage.qss │ ├── FluPagination.qss │ ├── FluPaginationItem.qss │ ├── FluPasswordBox.qss │ ├── FluPasswordBoxPage.qss │ ├── FluPivot.qss │ ├── FluPivotPage.qss │ ├── FluPivotTitleBar.qss │ ├── FluPivotTitleBarItem.qss │ ├── FluProgressBar.qss │ ├── FluProgressBarPage.qss │ ├── FluProgressRingPage.qss │ ├── FluPushButton.qss │ ├── FluRadioButton.qss │ ├── FluRadioButtonPage.qss │ ├── FluRadioButtonsPage.qss │ ├── FluRatingControlPage.qss │ ├── FluRepeatButton.qss │ ├── FluRepeatButtonPage.qss │ ├── FluRotationButton.qss │ ├── FluRoundMenu.qss │ ├── FluRoundMenuView.qss │ ├── FluScaleButton.qss │ ├── FluScrollBar.qss │ ├── FluScrollViewPage.qss │ ├── FluScrollingPage.qss │ ├── FluSearchLineEdit.qss │ ├── FluSegmented.qss │ ├── FluSegmentedItem.qss │ ├── FluSettingPage.qss │ ├── FluSettingsLabelBox.qss │ ├── FluSettingsSelectBox.qss │ ├── FluSettingsVersionBox.qss │ ├── FluShortInfoBar.qss │ ├── FluShortcutPicker.qss │ ├── FluShortcutPickerDlg.qss │ ├── FluSlider.qss │ ├── FluSliderPage.qss │ ├── FluSpinBox.qss │ ├── FluSplitButton.qss │ ├── FluSplitButtonPage.qss │ ├── FluStatusAndInfoPage.qss │ ├── FluStyleButton.qss │ ├── FluTabWidget.qss │ ├── FluTableView.qss │ ├── FluTableViewPage.qss │ ├── FluTemplateDemo.qss │ ├── FluTextBoxPage.qss │ ├── FluTextEdit.qss │ ├── FluTextPage.qss │ ├── FluTimePicker24H.qss │ ├── FluTimePicker24HView.qss │ ├── FluTimePickerAP.qss │ ├── FluTimePickerAPView.qss │ ├── FluTimePickerPage.qss │ ├── FluToggleButton.qss │ ├── FluToggleButtonPage.qss │ ├── FluToggleSwitch.qss │ ├── FluToggleSwitchEx.qss │ ├── FluToggleSwitchPage.qss │ ├── FluTreeView.qss │ ├── FluTreeViewPage.qss │ ├── FluTypeographyPage.qss │ ├── FluVCard.qss │ ├── FluVFlipView.qss │ ├── FluVFlyout.qss │ ├── FluVNavigationFlyIconTextItem.qss │ ├── FluVNavigationIconTextItem.qss │ ├── FluVNavigationMenuItem.qss │ ├── FluVNavigationSearchItem.qss │ ├── FluVNavigationSettingsItem.qss │ ├── FluVNavigationView.qss │ ├── FluVRadioGroupBox.qss │ ├── FluVScrollView.qss │ ├── FluVSplitLine.qss │ ├── FluWindowKitTitleBar.qss │ └── FluWindowKitWidget.qss └── light │ ├── FluAEmptyPage.qss │ ├── FluATitlePage.qss │ ├── FluAllSamplesPage.qss │ ├── FluAmPmView.qss │ ├── FluAppBarButton.qss │ ├── FluAppBarButtonPage.qss │ ├── FluAppBarToggleButton.qss │ ├── FluAppBarToggleButtonPage.qss │ ├── FluAutoSuggestBox.qss │ ├── FluAutoSuggestBoxPage.qss │ ├── FluBasicInputPage.qss │ ├── FluBorder.qss │ ├── FluBorderPage.qss │ ├── FluBusyProgressRing.qss │ ├── FluButtonPage.qss │ ├── FluCalendarDatePicker.qss │ ├── FluCalendarDatePickerPage.qss │ ├── FluCalendarMonthView.qss │ ├── FluCalendarSelectMonthView.qss │ ├── FluCalendarSelectYearView.qss │ ├── FluCalendarView.qss │ ├── FluCalendarViewPage.qss │ ├── FluCalendarViewTitle.qss │ ├── FluCalendarViewWeakTitle.qss │ ├── FluCheckBox.qss │ ├── FluCheckBoxPage.qss │ ├── FluCircleDot.qss │ ├── FluCodeBox.qss │ ├── FluCollectionsPage.qss │ ├── FluColorButton.qss │ ├── FluColorFlyout.qss │ ├── FluColorLabel.qss │ ├── FluColorPickerButton.qss │ ├── FluColorPickerPage.qss │ ├── FluColorView.qss │ ├── FluComboBox.qss │ ├── FluComboBoxEx.qss │ ├── FluComboBoxPage.qss │ ├── FluCommandBar.qss │ ├── FluCommandBarIconItem.qss │ ├── FluCommandBarIconTextItem.qss │ ├── FluConfirmFlyout.qss │ ├── FluContentDialogPage.qss │ ├── FluDateAndTimePage.qss │ ├── FluDatePicker.qss │ ├── FluDatePickerPage.qss │ ├── FluDatePickerView.qss │ ├── FluDialogsAndFlyoutsPage.qss │ ├── FluDisplayBox.qss │ ├── FluDisplayBoxEx.qss │ ├── FluDisplayIconBox.qss │ ├── FluDoubleSpinBox.qss │ ├── FluDropDownButton.qss │ ├── FluDropDownButtonPage.qss │ ├── FluExpander.qss │ ├── FluExpanderPage.qss │ ├── FluFWScrollView.qss │ ├── FluFlipView.qss │ ├── FluFlipViewPage.qss │ ├── FluFlyoutPage.qss │ ├── FluGalleryWindow.qss │ ├── FluGraphicalButton.qss │ ├── FluHCard.qss │ ├── FluHFlipView.qss │ ├── FluHNavigationDemo.qss │ ├── FluHNavigationFlyIconTextItem.qss │ ├── FluHNavigationIconTextItem.qss │ ├── FluHNavigationMoreItem.qss │ ├── FluHNavigationSettingsItem.qss │ ├── FluHNavigationView.qss │ ├── FluHScrollView.qss │ ├── FluHSplitLine.qss │ ├── FluHomePage.qss │ ├── FluHomePageTitle.qss │ ├── FluHyperLinkButton.qss │ ├── FluHyperLinkButtonPage.qss │ ├── FluIconButton.qss │ ├── FluIconsPage.qss │ ├── FluInfoBadge.qss │ ├── FluInfoBadgePage.qss │ ├── FluInfoBarPage.qss │ ├── FluLabel.qss │ ├── FluLayoutPage.qss │ ├── FluLineEdit.qss │ ├── FluListView.qss │ ├── FluListViewPage.qss │ ├── FluLoopView.qss │ ├── FluMSNavigationItem.qss │ ├── FluMSNavigationView.qss │ ├── FluMSPage.qss │ ├── FluMSWindow.qss │ ├── FluMediaPage.qss │ ├── FluMenu.qss │ ├── FluMenuAndToolBarsPage.qss │ ├── FluMenuBar.qss │ ├── FluMenuBarItem.qss │ ├── FluMenuBarPage.qss │ ├── FluMenuDemo.qss │ ├── FluMessageBox.qss │ ├── FluNavigationItem.qss │ ├── FluNavigationPage.qss │ ├── FluNumberBoxPage.qss │ ├── FluPagination.qss │ ├── FluPaginationItem.qss │ ├── FluPasswordBox.qss │ ├── FluPasswordBoxPage.qss │ ├── FluPivot.qss │ ├── FluPivotPage.qss │ ├── FluPivotTitleBar.qss │ ├── FluPivotTitleBarItem.qss │ ├── FluProgressBar.qss │ ├── FluProgressBarPage.qss │ ├── FluProgressRingPage.qss │ ├── FluPushButton.qss │ ├── FluRadioButton.qss │ ├── FluRadioButtonPage.qss │ ├── FluRadioButtonsPage.qss │ ├── FluRatingControl.qss │ ├── FluRatingControlPage.qss │ ├── FluRepeatButton.qss │ ├── FluRepeatButtonPage.qss │ ├── FluRotationButton.qss │ ├── FluRoundMenu.qss │ ├── FluRoundMenuView.qss │ ├── FluScaleButton.qss │ ├── FluScrollBar.qss │ ├── FluScrollViewPage.qss │ ├── FluScrollingPage.qss │ ├── FluSearchLineEdit.qss │ ├── FluSegmented.qss │ ├── FluSegmentedItem.qss │ ├── FluSettingPage.qss │ ├── FluSettingsLabelBox.qss │ ├── FluSettingsSelectBox.qss │ ├── FluSettingsVersionBox.qss │ ├── FluShortInfoBar.qss │ ├── FluShortcutPicker.qss │ ├── FluShortcutPickerDlg.qss │ ├── FluSlider.qss │ ├── FluSliderPage.qss │ ├── FluSpinBox.qss │ ├── FluSplitButton.qss │ ├── FluSplitButtonPage.qss │ ├── FluStatusAndInfoPage.qss │ ├── FluStyleButton.qss │ ├── FluTabBar.qss │ ├── FluTabBarContent.qss │ ├── FluTabBarItem.qss │ ├── FluTabView.qss │ ├── FluTabWidget.qss │ ├── FluTableView.qss │ ├── FluTableViewPage.qss │ ├── FluTemplateDemo.qss │ ├── FluTextBoxPage.qss │ ├── FluTextEdit.qss │ ├── FluTextPage.qss │ ├── FluTimePicker24H.qss │ ├── FluTimePicker24HView.qss │ ├── FluTimePickerAP.qss │ ├── FluTimePickerAPView.qss │ ├── FluTimePickerPage.qss │ ├── FluToggleButton.qss │ ├── FluToggleButtonPage.qss │ ├── FluToggleSwitch.qss │ ├── FluToggleSwitchEx.qss │ ├── FluToggleSwitchPage.qss │ ├── FluTreeView.qss │ ├── FluTreeViewPage.qss │ ├── FluTypeographyPage.qss │ ├── FluVCard.qss │ ├── FluVFlipView.qss │ ├── FluVFlyout.qss │ ├── FluVNavigationFlyIconTextItem.qss │ ├── FluVNavigationIconTextItem.qss │ ├── FluVNavigationMenuItem.qss │ ├── FluVNavigationSearchItem.qss │ ├── FluVNavigationSettingsItem.qss │ ├── FluVNavigationView.qss │ ├── FluVRadioGroupBox.qss │ ├── FluVScrollView.qss │ ├── FluVSplitLine.qss │ ├── FluWindowKitTitleBar.qss │ └── FluWindowKitWidget.qss ├── build&pack.bat ├── clean.bat ├── code ├── AppBarButtonPageCode1.md ├── AppBarButtonPageCode2.md ├── AppBarToggleButtonPageCode1.md ├── AutoSuggestBoxPageCode1.md ├── BorderPageCode1.md ├── ButtonPageCode1.md ├── ButtonPageCode2.md ├── ButtonPageCode3.md ├── CalendarDatePickerPageCode1.md ├── CalendarViewPageCode1.md ├── CheckBoxPageCode1.md ├── CheckBoxPageCode2.md ├── ComboBoxPageCode1.md ├── ContentDialogPageCode1.md ├── DatePickerPageCode1.md ├── DropDownButtonPageCode1.md ├── DropDownButtonPageCode2.md ├── ExpanderPageCode1.md ├── ExpanderPageCode2.md ├── ExpanderPageCode3.md ├── FlipViewPageCode1.md ├── FlipViewPageCode2.md ├── FlyoutPageCode1.md ├── HyperLinkButtonPageCode1.md ├── InfoBadgePageCode1.md ├── InfoBarPageCode1.md ├── InfoBarPageCode2.md ├── ListViewPageCode1.md ├── MenuBarPageCode1.md ├── MenuBarPageCode2.md ├── NumberBoxPageCode1.md ├── NumberBoxPageCode2.md ├── PasswordBoxPageCode1.md ├── PasswordBoxPageCode2.md ├── PivotPageCode1.md ├── ProgressBarPageCode1.md ├── ProgressRingPageCode1.md ├── ProgressRingPageCode2.md ├── ProgressRingPageCode3.md ├── RadioButtonPageCode1.md ├── RadioButtonsPageCode1.md ├── RatingControlPageCode1.md ├── RepeatButtonPageCode1.md ├── ScrollViewPageCode1.md ├── SliderPageCode1.md ├── SliderPageCode2.md ├── SplitButtonPageCode1.md ├── TableViewPageCode1.md ├── TextBoxPageCode1.md ├── TimePickerPageCode1.md ├── TimePickerPageCode2.md ├── ToggleButtonPageCode1.md ├── ToggleSwitchPageCode1.md └── TreeViewPageCode1.md ├── config └── config.ini ├── dellogs.bat ├── docs ├── ATitileOfPage.png ├── TimeLine.png ├── blue.png ├── button.png ├── change code to utf-8.md ├── gallery.png ├── i18n.md ├── refrence.md └── windowkit-widget-MacOs.png ├── format.bat ├── format.sh ├── i18n ├── en-US.qm ├── en-US.ts ├── zh-CN.qm └── zh-CN.ts ├── log └── .gitkeep ├── lupdate.bat ├── package.bat ├── pushTag.bat └── res ├── ChevronDown.png ├── ChevronRight.png ├── ChromeClose.png ├── CoffeeCup.png ├── Contacts.txt ├── ControlImages ├── Acrylic.png ├── AnimatedIcon.png ├── AnimatedVisualPlayer.png ├── AnimationInterop.png ├── AnnotatedScrollBar.png ├── AppBarButton.png ├── AppBarSeparator.png ├── AppBarToggleButton.png ├── AutoSuggestBox.png ├── AutomationProperties.png ├── Border.png ├── BreadcrumbBar.png ├── Button.png ├── CalendarDatePicker.png ├── CalendarView.png ├── Canvas.png ├── CaptureElement.png ├── Checkbox.png ├── Clipboard.png ├── ColorPaletteResources.png ├── ColorPicker.png ├── ComboBox.png ├── CommandBar.png ├── CommandBarFlyout.png ├── CompactSizing.png ├── ConnectedAnimation.png ├── ContentDialog.png ├── CreateMultipleWindows.png ├── DataGrid.png ├── DatePicker.png ├── DropDownButton.png ├── EasingFunction.png ├── Expander.png ├── FilePicker.png ├── FlipView.png ├── Flyout.png ├── Grid.png ├── GridView.png ├── HyperlinkButton.png ├── IconElement.png ├── Image.png ├── ImplicitTransition.png ├── InfoBadge.png ├── InfoBar.png ├── InkCanvas.png ├── InkToolbar.png ├── InputValidation.png ├── ItemsRepeater.png ├── ItemsView.png ├── Line.png ├── ListBox.png ├── ListView.png ├── MapControl.png ├── MediaPlayerElement.png ├── MenuBar.png ├── MenuFlyout.png ├── NavigationView.png ├── NumberBox.png ├── PageTransition.png ├── ParallaxView.png ├── PasswordBox.png ├── PersonPicture.png ├── PipsPager.png ├── Pivot.png ├── Placeholder.png ├── ProgressBar.png ├── ProgressRing.png ├── PullToRefresh.png ├── RadialGradientBrush.png ├── RadioButton.png ├── RadioButtons.png ├── RatingControl.png ├── RelativePanel.png ├── RepeatButton.png ├── RevealFocus.png ├── RichEditBox.png ├── RichTextBlock.png ├── ScratchPad.png ├── ScrollView.png ├── ScrollViewer.png ├── SemanticZoom.png ├── Shape.png ├── Slider.png ├── Sound.png ├── SplitButton.png ├── SplitView.png ├── StackPanel.png ├── StandardUICommand.png ├── SwipeControl.png ├── TabView.png ├── TeachingTip.png ├── TextBlock.png ├── TextBox.png ├── ThemeTransition.png ├── TimePicker.png ├── TitleBar.png ├── ToggleButton.png ├── ToggleSplitButton.png ├── ToggleSwitch.png ├── ToolTip.png ├── TreeView.png ├── VariableSizedWrapGrid.png ├── Viewbox.png ├── WebView.png └── XamlUICommand.png ├── ControlResImages ├── CheckBox-Black.png ├── CheckBox-White.png ├── CheckBoxPressed-Black.png ├── CheckBoxPressed-White.png ├── CheckboxIndeterminate-Black.png ├── CheckboxIndeterminate-White.png ├── ChevronDown-Dark.png ├── ChevronDown-Light.png ├── ChevronRight-Black.png ├── ChevronRight-Dark.png ├── ChevronRight-Light.png ├── GradientColor.png ├── RadioButton-Black.png ├── RadioButton-White.png ├── RadioButtonHover-Black.png ├── RadioButtonHover-White.png ├── RadioButtonPressed-Black.png ├── RadioButtonPressed-White.png ├── SpinBoxDown-Dark.png ├── SpinBoxDown-Light.png ├── SpinBoxDownDisabled-Dark.png ├── SpinBoxDownDisabled-Light.png ├── SpinBoxUp-Dark.png ├── SpinBoxUp-Light.png ├── SpinBoxUpDisabled-Dark.png ├── SpinBoxUpDisabled-Light.png ├── ToggleSwitchDisabled-Dark.png ├── ToggleSwitchDisabled-light.png ├── ToggleSwitchOff-Dark.png ├── ToggleSwitchOff-light.png ├── ToggleSwitchOffHover-Dark.png ├── ToggleSwitchOffHover-light.png ├── ToggleSwitchOffPressed-Dark.png ├── ToggleSwitchOffPressed-light.png ├── ToggleSwitchOn-Dark.png ├── ToggleSwitchOn-light.png ├── ToggleSwitchOnHover-Dark.png ├── ToggleSwitchOnHover-light.png ├── ToggleSwitchOnPressed-Dark.png └── ToggleSwitchOnPressed-light.png ├── CopyLinkTeachingTip.png ├── GalleryHeaderImage.png ├── HomeHeaderTiles ├── Header-Store.dark.png ├── Header-Store.light.png ├── Header-Toolkit.png ├── Header-WinUIGallery.png ├── Header-WindowsDesign.png ├── github-mark-white.png ├── github-mark-white.svg ├── github-mark.png └── github-mark.svg ├── LottieLogo1.png ├── SampleMedia ├── LandscapeImage1.jpg ├── LandscapeImage10.jpg ├── LandscapeImage11.jpg ├── LandscapeImage12.jpg ├── LandscapeImage13.jpg ├── LandscapeImage2.jpg ├── LandscapeImage3.jpg ├── LandscapeImage4.jpg ├── LandscapeImage5.jpg ├── LandscapeImage6.jpg ├── LandscapeImage7.jpg ├── LandscapeImage8.jpg ├── LandscapeImage9.jpg ├── MirrorPCConsent.svg ├── cliff.jpg ├── fishes.wmv ├── grapes.jpg ├── ladybug.wmv ├── rainier.jpg ├── sunset.jpg ├── treetops.jpg └── valley.jpg ├── ScrollBottom.png ├── ScrollTop.png ├── Segoe_Fluent_Icons.ttf ├── Slices.png ├── Slices2.png ├── SunBlack.png ├── SunWhite.png ├── TabViewIcons ├── cmd.png ├── linux.png └── powershell.png ├── Tiles ├── BadgeLogo.scale-100.png ├── BadgeLogo.scale-125.png ├── BadgeLogo.scale-150.png ├── BadgeLogo.scale-200.png ├── BadgeLogo.scale-400.png ├── GalleryIcon.ico ├── LargeTile.scale-100.png ├── LargeTile.scale-125.png ├── LargeTile.scale-150.png ├── LargeTile.scale-200.png ├── LargeTile.scale-400.png ├── SmallTile-sdk.altform-lightunplated_targetsize-16.png ├── SmallTile-sdk.altform-lightunplated_targetsize-24.png ├── SmallTile-sdk.altform-lightunplated_targetsize-256.png ├── SmallTile-sdk.altform-lightunplated_targetsize-32.png ├── SmallTile-sdk.altform-lightunplated_targetsize-48.png ├── SmallTile-sdk.altform-unplated_targetsize-16.png ├── SmallTile-sdk.altform-unplated_targetsize-20.png ├── SmallTile-sdk.altform-unplated_targetsize-24.png ├── SmallTile-sdk.altform-unplated_targetsize-256.png ├── SmallTile-sdk.altform-unplated_targetsize-30.png ├── SmallTile-sdk.altform-unplated_targetsize-32.png ├── SmallTile-sdk.altform-unplated_targetsize-36.png ├── SmallTile-sdk.altform-unplated_targetsize-40.png ├── SmallTile-sdk.altform-unplated_targetsize-48.png ├── SmallTile-sdk.altform-unplated_targetsize-60.png ├── SmallTile-sdk.altform-unplated_targetsize-64.png ├── SmallTile-sdk.altform-unplated_targetsize-72.png ├── SmallTile-sdk.altform-unplated_targetsize-80.png ├── SmallTile-sdk.altform-unplated_targetsize-96.png ├── SmallTile-sdk.scale-100.png ├── SmallTile-sdk.scale-125.png ├── SmallTile-sdk.scale-150.png ├── SmallTile-sdk.scale-200.png ├── SmallTile-sdk.scale-400.png ├── SmallTile-sdk.targetsize-16.png ├── SmallTile-sdk.targetsize-20.png ├── SmallTile-sdk.targetsize-24.png ├── SmallTile-sdk.targetsize-256.png ├── SmallTile-sdk.targetsize-30.png ├── SmallTile-sdk.targetsize-32.png ├── SmallTile-sdk.targetsize-36.png ├── SmallTile-sdk.targetsize-40.png ├── SmallTile-sdk.targetsize-48.png ├── SmallTile-sdk.targetsize-60.png ├── SmallTile-sdk.targetsize-64.png ├── SmallTile-sdk.targetsize-72.png ├── SmallTile-sdk.targetsize-80.png ├── SmallTile-sdk.targetsize-96.png ├── SmallTile.scale-100.png ├── SmallTile.scale-125.png ├── SmallTile.scale-150.png ├── SmallTile.scale-200.png ├── SmallTile.scale-400.png ├── StoreLogo-sdk.scale-100.png ├── StoreLogo-sdk.scale-125.png ├── StoreLogo-sdk.scale-150.png ├── StoreLogo-sdk.scale-200.png ├── StoreLogo-sdk.scale-400.png ├── Tile_General.png ├── TitlebarLogo.png ├── WideLogo.scale-80.png ├── WideTile.scale-100.png ├── WideTile.scale-125.png ├── WideTile.scale-150.png ├── WideTile.scale-200.png ├── WideTile.scale-400.png ├── contrast-black │ ├── XAMLControlsGalleryAppList.scale-100_contrast-black.png │ ├── XAMLControlsGalleryAppList.scale-125_contrast-black.png │ ├── XAMLControlsGalleryAppList.scale-150_contrast-black.png │ ├── XAMLControlsGalleryAppList.scale-200_contrast-black.png │ ├── XAMLControlsGalleryAppList.scale-400_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-16_altform-unplated_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-16_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-20_altform-unplated_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-20_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-24_altform-unplated_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-24_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-256_altform-unplated_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-256_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-30_altform-unplated_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-30_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-32_altform-unplated_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-32_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-36_altform-unplated_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-36_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-40_altform-unplated_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-40_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-48_altform-unplated_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-48_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-60_altform-unplated_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-60_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-64_altform-unplated_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-64_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-72_altform-unplated_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-72_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-80_altform-unplated_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-80_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-96_altform-unplated_contrast-black.png │ ├── XAMLControlsGalleryAppList.targetsize-96_contrast-black.png │ ├── XAMLControlsGalleryBadgeLogo.scale-100_contrast-black.png │ ├── XAMLControlsGalleryBadgeLogo.scale-125_contrast-black.png │ ├── XAMLControlsGalleryBadgeLogo.scale-150_contrast-black.png │ ├── XAMLControlsGalleryBadgeLogo.scale-200_contrast-black.png │ ├── XAMLControlsGalleryBadgeLogo.scale-400_contrast-black.png │ ├── XAMLControlsGalleryLargeTile.scale-100_contrast-black.png │ ├── XAMLControlsGalleryLargeTile.scale-125_contrast-black.png │ ├── XAMLControlsGalleryLargeTile.scale-150_contrast-black.png │ ├── XAMLControlsGalleryLargeTile.scale-200_contrast-black.png │ ├── XAMLControlsGalleryLargeTile.scale-400_contrast-black.png │ ├── XAMLControlsGalleryMedTile.scale-100_contrast-black.png │ ├── XAMLControlsGalleryMedTile.scale-125_contrast-black.png │ ├── XAMLControlsGalleryMedTile.scale-150_contrast-black.png │ ├── XAMLControlsGalleryMedTile.scale-200_contrast-black.png │ ├── XAMLControlsGalleryMedTile.scale-400_contrast-black.png │ ├── XAMLControlsGallerySmallTile.scale-100_contrast-black.png │ ├── XAMLControlsGallerySmallTile.scale-125_contrast-black.png │ ├── XAMLControlsGallerySmallTile.scale-150_contrast-black.png │ ├── XAMLControlsGallerySmallTile.scale-200_contrast-black.png │ ├── XAMLControlsGallerySmallTile.scale-400_contrast-black.png │ ├── XAMLControlsGallerySplashScreen.scale-100_contrast-black.png │ ├── XAMLControlsGallerySplashScreen.scale-125_contrast-black.png │ ├── XAMLControlsGallerySplashScreen.scale-150_contrast-black.png │ ├── XAMLControlsGallerySplashScreen.scale-200_contrast-black.png │ ├── XAMLControlsGallerySplashScreen.scale-400_contrast-black.png │ ├── XAMLControlsGalleryStoreLogo.scale-100_contrast-black.png │ ├── XAMLControlsGalleryStoreLogo.scale-125_contrast-black.png │ ├── XAMLControlsGalleryStoreLogo.scale-150_contrast-black.png │ ├── XAMLControlsGalleryStoreLogo.scale-200_contrast-black.png │ ├── XAMLControlsGalleryStoreLogo.scale-400_contrast-black.png │ ├── XAMLControlsGalleryWideTile.scale-100_contrast-black.png │ ├── XAMLControlsGalleryWideTile.scale-125_contrast-black.png │ ├── XAMLControlsGalleryWideTile.scale-150_contrast-black.png │ ├── XAMLControlsGalleryWideTile.scale-200_contrast-black.png │ └── XAMLControlsGalleryWideTile.scale-400_contrast-black.png ├── contrast-white │ ├── XAMLControlsGalleryAppList.scale-100_contrast-white.png │ ├── XAMLControlsGalleryAppList.scale-125_contrast-white.png │ ├── XAMLControlsGalleryAppList.scale-150_contrast-white.png │ ├── XAMLControlsGalleryAppList.scale-200_contrast-white.png │ ├── XAMLControlsGalleryAppList.scale-400_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-16_altform-unplated_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-16_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-20_altform-unplated_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-20_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-24_altform-unplated_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-24_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-256_altform-unplated_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-256_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-30_altform-unplated_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-30_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-32_altform-unplated_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-32_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-36_altform-unplated_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-36_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-40_altform-unplated_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-40_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-48_altform-unplated_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-48_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-60_altform-unplated_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-60_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-64_altform-unplated_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-64_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-72_altform-unplated_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-72_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-80_altform-unplated_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-80_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-96_altform-unplated_contrast-white.png │ ├── XAMLControlsGalleryAppList.targetsize-96_contrast-white.png │ ├── XAMLControlsGalleryBadgeLogo.scale-100_contrast-white.png │ ├── XAMLControlsGalleryBadgeLogo.scale-125_contrast-white.png │ ├── XAMLControlsGalleryBadgeLogo.scale-150_contrast-white.png │ ├── XAMLControlsGalleryBadgeLogo.scale-200_contrast-white.png │ ├── XAMLControlsGalleryBadgeLogo.scale-400_contrast-white.png │ ├── XAMLControlsGalleryLargeTile.scale-100_contrast-white.png │ ├── XAMLControlsGalleryLargeTile.scale-125_contrast-white.png │ ├── XAMLControlsGalleryLargeTile.scale-150_contrast-white.png │ ├── XAMLControlsGalleryLargeTile.scale-200_contrast-white.png │ ├── XAMLControlsGalleryLargeTile.scale-400_contrast-white.png │ ├── XAMLControlsGalleryMedTile.scale-100_contrast-white.png │ ├── XAMLControlsGalleryMedTile.scale-125_contrast-white.png │ ├── XAMLControlsGalleryMedTile.scale-150_contrast-white.png │ ├── XAMLControlsGalleryMedTile.scale-200_contrast-white.png │ ├── XAMLControlsGalleryMedTile.scale-400_contrast-white.png │ ├── XAMLControlsGallerySmallTile.scale-100_contrast-white.png │ ├── XAMLControlsGallerySmallTile.scale-125_contrast-white.png │ ├── XAMLControlsGallerySmallTile.scale-150_contrast-white.png │ ├── XAMLControlsGallerySmallTile.scale-200_contrast-white.png │ ├── XAMLControlsGallerySmallTile.scale-400_contrast-white.png │ ├── XAMLControlsGallerySplashScreen.scale-100_contrast-white.png │ ├── XAMLControlsGallerySplashScreen.scale-125_contrast-white.png │ ├── XAMLControlsGallerySplashScreen.scale-150_contrast-white.png │ ├── XAMLControlsGallerySplashScreen.scale-200_contrast-white.png │ ├── XAMLControlsGallerySplashScreen.scale-400_contrast-white.png │ ├── XAMLControlsGalleryStoreLogo.scale-100_contrast-white.png │ ├── XAMLControlsGalleryStoreLogo.scale-125_contrast-white.png │ ├── XAMLControlsGalleryStoreLogo.scale-150_contrast-white.png │ ├── XAMLControlsGalleryStoreLogo.scale-200_contrast-white.png │ ├── XAMLControlsGalleryStoreLogo.scale-400_contrast-white.png │ ├── XAMLControlsGalleryWideTile.scale-100_contrast-white.png │ ├── XAMLControlsGalleryWideTile.scale-125_contrast-white.png │ ├── XAMLControlsGalleryWideTile.scale-150_contrast-white.png │ ├── XAMLControlsGalleryWideTile.scale-200_contrast-white.png │ └── XAMLControlsGalleryWideTile.scale-400_contrast-white.png ├── splash-sdk.scale-100.png ├── splash-sdk.scale-125.png ├── splash-sdk.scale-150.png ├── splash-sdk.scale-200.png ├── splash-sdk.scale-400.png ├── squaretile-sdk.scale-100.png ├── squaretile-sdk.scale-125.png ├── squaretile-sdk.scale-150.png ├── squaretile-sdk.scale-200.png ├── squaretile-sdk.scale-400.png ├── widelogo.scale-100.png ├── widelogo.scale-140.png └── widelogo.scale-180.png ├── Typography.dark.png ├── Typography.light.png ├── WideLogo.scale-80.png ├── badgelogo.scale-100.png ├── badgelogo.scale-140.png ├── badgelogo.scale-180.png ├── blank.png ├── folder.png ├── ninegrid.gif ├── widelogo.scale-100.png ├── widelogo.scale-140.png └── widelogo.scale-180.png /3rdparty/framelesshelper-2.5.0/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "cmake"] 2 | path = cmake 3 | url = ../../wangwenx190/cmake-utils.git 4 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/cmake/.gitignore: -------------------------------------------------------------------------------- 1 | CMakeLists.txt.user 2 | CMakeCache.txt 3 | CMakeFiles 4 | CMakeScripts 5 | Testing 6 | Makefile 7 | cmake_install.cmake 8 | install_manifest.txt 9 | compile_commands.json 10 | CTestTestfile.cmake 11 | _deps 12 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/cmake/README.md: -------------------------------------------------------------------------------- 1 | # cmake-utils 2 | CMake helper utilities 3 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/cmake/enable-long-path.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem] 4 | "LongPathsEnabled"=dword:00000001 5 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/examples/openglwidget/images.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | images/qtlogo.png 4 | 5 | 6 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/examples/openglwidget/images/qtlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/framelesshelper-2.5.0/examples/openglwidget/images/qtlogo.png -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/examples/quick/images/microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/framelesshelper-2.5.0/examples/quick/images/microsoft.png -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/examples/shared/example.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/framelesshelper-2.5.0/examples/shared/example.ico -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Core/ChromePalette: -------------------------------------------------------------------------------- 1 | #include "chromepalette.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Core/FramelessHelper_Linux: -------------------------------------------------------------------------------- 1 | #include "framelesshelper_linux.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Core/FramelessHelper_Qt: -------------------------------------------------------------------------------- 1 | #include "framelesshelper_qt.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Core/FramelessHelper_Win: -------------------------------------------------------------------------------- 1 | #include "framelesshelper_win.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Core/FramelessHelper_Windows: -------------------------------------------------------------------------------- 1 | #include "framelesshelper_windows.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Core/FramelessManager: -------------------------------------------------------------------------------- 1 | #include "framelessmanager.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Core/Global: -------------------------------------------------------------------------------- 1 | #include "framelesshelpercore_global.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Core/MicaMaterial: -------------------------------------------------------------------------------- 1 | #include "micamaterial.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Core/Utils: -------------------------------------------------------------------------------- 1 | #include "utils.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Core/WindowBorderPainter: -------------------------------------------------------------------------------- 1 | #include "windowborderpainter.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Quick/FramelessQuickHelper: -------------------------------------------------------------------------------- 1 | #include "framelessquickhelper.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Quick/FramelessQuickModule: -------------------------------------------------------------------------------- 1 | #include "framelessquickmodule.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Quick/FramelessQuickUtils: -------------------------------------------------------------------------------- 1 | #include "framelessquickutils.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Quick/Global: -------------------------------------------------------------------------------- 1 | #include "framelesshelperquick_global.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Quick/QuickChromePalette: -------------------------------------------------------------------------------- 1 | #include "quickchromepalette.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Quick/QuickMicaMaterial: -------------------------------------------------------------------------------- 1 | #include "quickmicamaterial.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Quick/QuickWindowBorder: -------------------------------------------------------------------------------- 1 | #include "quickwindowborder.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Widgets/FramelessDialog: -------------------------------------------------------------------------------- 1 | #include "framelessdialog.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Widgets/FramelessMainWindow: -------------------------------------------------------------------------------- 1 | #include "framelessmainwindow.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Widgets/FramelessWidget: -------------------------------------------------------------------------------- 1 | #include "framelesswidget.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Widgets/FramelessWidgetsHelper: -------------------------------------------------------------------------------- 1 | #include "framelesswidgetshelper.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Widgets/Global: -------------------------------------------------------------------------------- 1 | #include "framelesshelperwidgets_global.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Widgets/StandardSystemButton: -------------------------------------------------------------------------------- 1 | #include "standardsystembutton.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/include/FramelessHelper/Widgets/StandardTitleBar: -------------------------------------------------------------------------------- 1 | #include "standardtitlebar.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/core/chromepalette.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Core/chromepalette.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/core/chromepalette_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Core/private/chromepalette_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/core/framelessconfig_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Core/private/framelessconfig_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/core/framelesshelper_linux.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Core/framelesshelper_linux.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/core/framelesshelper_qt.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Core/framelesshelper_qt.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/core/framelesshelper_win.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Core/framelesshelper_win.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/core/framelesshelper_windows.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Core/framelesshelper_windows.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/core/framelesshelpercore_global.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Core/framelesshelpercore_global.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/core/framelesshelpercore_global_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Core/private/framelesshelpercore_global_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/core/framelessmanager.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Core/framelessmanager.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/core/framelessmanager_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Core/private/framelessmanager_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/core/micamaterial.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Core/micamaterial.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/core/micamaterial_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Core/private/micamaterial_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/core/registrykey_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Core/private/registrykey_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/core/resources/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/framelesshelper-2.5.0/src/core/resources/fonts/iconfont.ttf -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/core/resources/images/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/framelesshelper-2.5.0/src/core/resources/images/noise.png -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/core/scopeguard_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Core/private/scopeguard_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/core/sysapiloader_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Core/private/sysapiloader_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/core/utils.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Core/utils.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/core/versionnumber_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Core/private/versionnumber_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/core/windowborderpainter.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Core/windowborderpainter.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/core/windowborderpainter_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Core/private/windowborderpainter_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/core/winverhelper_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Core/private/winverhelper_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/quick/framelesshelperquick_global.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Quick/framelesshelperquick_global.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/quick/framelessquickapplicationwindow_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Quick/private/framelessquickapplicationwindow_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/quick/framelessquickapplicationwindow_p_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Quick/private/framelessquickapplicationwindow_p_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/quick/framelessquickhelper.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Quick/framelessquickhelper.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/quick/framelessquickhelper_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Quick/private/framelessquickhelper_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/quick/framelessquickmodule.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Quick/framelessquickmodule.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/quick/framelessquickutils.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Quick/framelessquickutils.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/quick/framelessquickwindow_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Quick/private/framelessquickwindow_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/quick/framelessquickwindow_p_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Quick/private/framelessquickwindow_p_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/quick/quickchromepalette.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Quick/quickchromepalette.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/quick/quickimageitem.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Quick/quickimageitem.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/quick/quickimageitem_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Quick/private/quickimageitem_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/quick/quickmicamaterial.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Quick/quickmicamaterial.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/quick/quickmicamaterial_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Quick/private/quickmicamaterial_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/quick/quickstandardsystembutton_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Quick/private/quickstandardsystembutton_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/quick/quickstandardtitlebar_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Quick/private/quickstandardtitlebar_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/quick/quickwindowborder.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Quick/quickwindowborder.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/quick/quickwindowborder_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Quick/private/quickwindowborder_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/widgets/framelessdialog.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Widgets/framelessdialog.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/widgets/framelessdialog_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Widgets/private/framelessdialog_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/widgets/framelesshelperwidgets_global.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Widgets/framelesshelperwidgets_global.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/widgets/framelessmainwindow.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Widgets/framelessmainwindow.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/widgets/framelessmainwindow_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Widgets/private/framelessmainwindow_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/widgets/framelesswidget.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Widgets/framelesswidget.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/widgets/framelesswidget_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Widgets/private/framelesswidget_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/widgets/framelesswidgetshelper.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Widgets/framelesswidgetshelper.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/widgets/framelesswidgetshelper_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Widgets/private/framelesswidgetshelper_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/widgets/standardsystembutton.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Widgets/standardsystembutton.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/widgets/standardsystembutton_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Widgets/private/standardsystembutton_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/widgets/standardtitlebar.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Widgets/standardtitlebar.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/widgets/standardtitlebar_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Widgets/private/standardtitlebar_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper-2.5.0/src/widgets/widgetssharedhelper_p.h: -------------------------------------------------------------------------------- 1 | #include "../../include/FramelessHelper/Widgets/private/widgetssharedhelper_p.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper/bin/debug/FramelessHelperCore64d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/framelesshelper/bin/debug/FramelessHelperCore64d.dll -------------------------------------------------------------------------------- /3rdparty/framelesshelper/bin/debug/FramelessHelperQuick64d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/framelesshelper/bin/debug/FramelessHelperQuick64d.dll -------------------------------------------------------------------------------- /3rdparty/framelesshelper/bin/debug/FramelessHelperWidgets64d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/framelesshelper/bin/debug/FramelessHelperWidgets64d.dll -------------------------------------------------------------------------------- /3rdparty/framelesshelper/bin/release/FramelessHelperCore64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/framelesshelper/bin/release/FramelessHelperCore64.dll -------------------------------------------------------------------------------- /3rdparty/framelesshelper/bin/release/FramelessHelperQuick64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/framelesshelper/bin/release/FramelessHelperQuick64.dll -------------------------------------------------------------------------------- /3rdparty/framelesshelper/bin/release/FramelessHelperWidgets64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/framelesshelper/bin/release/FramelessHelperWidgets64.dll -------------------------------------------------------------------------------- /3rdparty/framelesshelper/include/FramelessHelper/Core/ChromePalette: -------------------------------------------------------------------------------- 1 | #include "chromepalette.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper/include/FramelessHelper/Core/FramelessHelper_Win: -------------------------------------------------------------------------------- 1 | #include "framelesshelper_win.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper/include/FramelessHelper/Core/FramelessHelper_Windows: -------------------------------------------------------------------------------- 1 | #include "framelesshelper_windows.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper/include/FramelessHelper/Core/FramelessManager: -------------------------------------------------------------------------------- 1 | #include "framelessmanager.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper/include/FramelessHelper/Core/Global: -------------------------------------------------------------------------------- 1 | #include "framelesshelpercore_global.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper/include/FramelessHelper/Core/MicaMaterial: -------------------------------------------------------------------------------- 1 | #include "micamaterial.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper/include/FramelessHelper/Core/Utils: -------------------------------------------------------------------------------- 1 | #include "utils.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper/include/FramelessHelper/Core/WindowBorderPainter: -------------------------------------------------------------------------------- 1 | #include "windowborderpainter.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper/include/FramelessHelper/Quick/FramelessQuickHelper: -------------------------------------------------------------------------------- 1 | #include "framelessquickhelper.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper/include/FramelessHelper/Quick/FramelessQuickModule: -------------------------------------------------------------------------------- 1 | #include "framelessquickmodule.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper/include/FramelessHelper/Quick/FramelessQuickUtils: -------------------------------------------------------------------------------- 1 | #include "framelessquickutils.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper/include/FramelessHelper/Quick/Global: -------------------------------------------------------------------------------- 1 | #include "framelesshelperquick_global.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper/include/FramelessHelper/Quick/QuickChromePalette: -------------------------------------------------------------------------------- 1 | #include "quickchromepalette.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper/include/FramelessHelper/Quick/QuickMicaMaterial: -------------------------------------------------------------------------------- 1 | #include "quickmicamaterial.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper/include/FramelessHelper/Quick/QuickWindowBorder: -------------------------------------------------------------------------------- 1 | #include "quickwindowborder.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper/include/FramelessHelper/Widgets/FramelessDialog: -------------------------------------------------------------------------------- 1 | #include "framelessdialog.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper/include/FramelessHelper/Widgets/FramelessMainWindow: -------------------------------------------------------------------------------- 1 | #include "framelessmainwindow.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper/include/FramelessHelper/Widgets/FramelessWidget: -------------------------------------------------------------------------------- 1 | #include "framelesswidget.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper/include/FramelessHelper/Widgets/FramelessWidgetsHelper: -------------------------------------------------------------------------------- 1 | #include "framelesswidgetshelper.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper/include/FramelessHelper/Widgets/Global: -------------------------------------------------------------------------------- 1 | #include "framelesshelperwidgets_global.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper/include/FramelessHelper/Widgets/StandardSystemButton: -------------------------------------------------------------------------------- 1 | #include "standardsystembutton.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper/include/FramelessHelper/Widgets/StandardTitleBar: -------------------------------------------------------------------------------- 1 | #include "standardtitlebar.h" 2 | -------------------------------------------------------------------------------- /3rdparty/framelesshelper/lib/debug/FramelessHelperCore64d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/framelesshelper/lib/debug/FramelessHelperCore64d.lib -------------------------------------------------------------------------------- /3rdparty/framelesshelper/lib/debug/FramelessHelperQuick64d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/framelesshelper/lib/debug/FramelessHelperQuick64d.lib -------------------------------------------------------------------------------- /3rdparty/framelesshelper/lib/debug/FramelessHelperWidgets64d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/framelesshelper/lib/debug/FramelessHelperWidgets64d.lib -------------------------------------------------------------------------------- /3rdparty/framelesshelper/lib/release/FramelessHelperCore64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/framelesshelper/lib/release/FramelessHelperCore64.lib -------------------------------------------------------------------------------- /3rdparty/framelesshelper/lib/release/FramelessHelperQuick64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/framelesshelper/lib/release/FramelessHelperQuick64.lib -------------------------------------------------------------------------------- /3rdparty/framelesshelper/lib/release/FramelessHelperWidgets64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/framelesshelper/lib/release/FramelessHelperWidgets64.lib -------------------------------------------------------------------------------- /3rdparty/qrcode/lib/debug/qrcoded.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qrcode/lib/debug/qrcoded.lib -------------------------------------------------------------------------------- /3rdparty/qrcode/lib/release/qrcode.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qrcode/lib/release/qrcode.lib -------------------------------------------------------------------------------- /3rdparty/qscintilla-2.14.0/example/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qscintilla-2.14.0/example/images/copy.png -------------------------------------------------------------------------------- /3rdparty/qscintilla-2.14.0/example/images/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qscintilla-2.14.0/example/images/cut.png -------------------------------------------------------------------------------- /3rdparty/qscintilla-2.14.0/example/images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qscintilla-2.14.0/example/images/new.png -------------------------------------------------------------------------------- /3rdparty/qscintilla-2.14.0/example/images/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qscintilla-2.14.0/example/images/open.png -------------------------------------------------------------------------------- /3rdparty/qscintilla-2.14.0/example/images/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qscintilla-2.14.0/example/images/paste.png -------------------------------------------------------------------------------- /3rdparty/qscintilla-2.14.0/example/images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qscintilla-2.14.0/example/images/save.png -------------------------------------------------------------------------------- /3rdparty/qscintilla-2.14.0/src/qscintilla_cs.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qscintilla-2.14.0/src/qscintilla_cs.qm -------------------------------------------------------------------------------- /3rdparty/qscintilla-2.14.0/src/qscintilla_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qscintilla-2.14.0/src/qscintilla_de.qm -------------------------------------------------------------------------------- /3rdparty/qscintilla-2.14.0/src/qscintilla_es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qscintilla-2.14.0/src/qscintilla_es.qm -------------------------------------------------------------------------------- /3rdparty/qscintilla-2.14.0/src/qscintilla_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qscintilla-2.14.0/src/qscintilla_fr.qm -------------------------------------------------------------------------------- /3rdparty/qscintilla-2.14.0/src/qscintilla_pt_br.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qscintilla-2.14.0/src/qscintilla_pt_br.qm -------------------------------------------------------------------------------- /3rdparty/qscintilla/bin/debug/qscintilla2_qt6d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qscintilla/bin/debug/qscintilla2_qt6d.dll -------------------------------------------------------------------------------- /3rdparty/qscintilla/bin/release/qscintilla2_qt6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qscintilla/bin/release/qscintilla2_qt6.dll -------------------------------------------------------------------------------- /3rdparty/qscintilla/include/src/qscintilla_cs.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qscintilla/include/src/qscintilla_cs.qm -------------------------------------------------------------------------------- /3rdparty/qscintilla/include/src/qscintilla_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qscintilla/include/src/qscintilla_de.qm -------------------------------------------------------------------------------- /3rdparty/qscintilla/include/src/qscintilla_es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qscintilla/include/src/qscintilla_es.qm -------------------------------------------------------------------------------- /3rdparty/qscintilla/include/src/qscintilla_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qscintilla/include/src/qscintilla_fr.qm -------------------------------------------------------------------------------- /3rdparty/qscintilla/include/src/qscintilla_pt_br.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qscintilla/include/src/qscintilla_pt_br.qm -------------------------------------------------------------------------------- /3rdparty/qscintilla/lib/debug/qscintilla2_qt6d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qscintilla/lib/debug/qscintilla2_qt6d.lib -------------------------------------------------------------------------------- /3rdparty/qscintilla/lib/release/qscintilla2_qt6.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qscintilla/lib/release/qscintilla2_qt6.lib -------------------------------------------------------------------------------- /3rdparty/qwindowkit-1.3.2/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "qmsetup"] 2 | path = qmsetup 3 | url = ../../stdware/qmsetup.git 4 | branch = main -------------------------------------------------------------------------------- /3rdparty/qwindowkit-1.3.2/docs/images/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qwindowkit-1.3.2/docs/images/linux.png -------------------------------------------------------------------------------- /3rdparty/qwindowkit-1.3.2/docs/images/mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qwindowkit-1.3.2/docs/images/mac.png -------------------------------------------------------------------------------- /3rdparty/qwindowkit-1.3.2/docs/images/vs-guide-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qwindowkit-1.3.2/docs/images/vs-guide-1.png -------------------------------------------------------------------------------- /3rdparty/qwindowkit-1.3.2/docs/images/vs-guide-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qwindowkit-1.3.2/docs/images/vs-guide-2.png -------------------------------------------------------------------------------- /3rdparty/qwindowkit-1.3.2/docs/images/vs-guide-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qwindowkit-1.3.2/docs/images/vs-guide-3.png -------------------------------------------------------------------------------- /3rdparty/qwindowkit-1.3.2/docs/images/win10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qwindowkit-1.3.2/docs/images/win10.png -------------------------------------------------------------------------------- /3rdparty/qwindowkit-1.3.2/docs/images/win11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qwindowkit-1.3.2/docs/images/win11.png -------------------------------------------------------------------------------- /3rdparty/qwindowkit-1.3.2/examples/mainwindow/mainwindow.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | dark-style.qss 4 | light-style.qss 5 | 6 | -------------------------------------------------------------------------------- /3rdparty/qwindowkit-1.3.2/examples/qml/qml.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | main.qml 4 | QWKButton.qml 5 | 6 | -------------------------------------------------------------------------------- /3rdparty/qwindowkit-1.3.2/examples/shared/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(widgetframe) -------------------------------------------------------------------------------- /3rdparty/qwindowkit-1.3.2/examples/shared/resources/app/example.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qwindowkit-1.3.2/examples/shared/resources/app/example.icns -------------------------------------------------------------------------------- /3rdparty/qwindowkit-1.3.2/examples/shared/resources/app/example.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qwindowkit-1.3.2/examples/shared/resources/app/example.ico -------------------------------------------------------------------------------- /3rdparty/qwindowkit-1.3.2/examples/shared/resources/app/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qwindowkit-1.3.2/examples/shared/resources/app/example.png -------------------------------------------------------------------------------- /3rdparty/qwindowkit-1.3.2/qmsetup/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "syscmdline"] 2 | path = src/syscmdline 3 | url = ../../SineStriker/syscmdline.git 4 | branch = main -------------------------------------------------------------------------------- /3rdparty/qwindowkit-1.3.2/qmsetup/src/syscmdline/examples/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(del) 2 | add_subdirectory(mv) 3 | add_subdirectory(git) 4 | add_subdirectory(gcc) -------------------------------------------------------------------------------- /3rdparty/qwindowkit-1.3.2/qmsetup/src/syscmdline/examples/del/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project(del) 2 | 3 | file(GLOB _src *.h *.cpp) 4 | 5 | add_executable(${PROJECT_NAME} ${_src}) 6 | 7 | target_link_libraries(${PROJECT_NAME} PRIVATE syscmdline) -------------------------------------------------------------------------------- /3rdparty/qwindowkit-1.3.2/qmsetup/src/syscmdline/examples/gcc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project(gcc) 2 | 3 | file(GLOB _src *.h *.cpp) 4 | 5 | add_executable(${PROJECT_NAME} ${_src}) 6 | 7 | target_link_libraries(${PROJECT_NAME} PRIVATE syscmdline) -------------------------------------------------------------------------------- /3rdparty/qwindowkit-1.3.2/qmsetup/src/syscmdline/examples/git/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project(git) 2 | 3 | file(GLOB _src *.h *.cpp) 4 | 5 | add_executable(${PROJECT_NAME} ${_src}) 6 | 7 | target_link_libraries(${PROJECT_NAME} PRIVATE syscmdline) -------------------------------------------------------------------------------- /3rdparty/qwindowkit-1.3.2/qmsetup/src/syscmdline/examples/mv/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project(mv) 2 | 3 | file(GLOB _src *.h *.cpp) 4 | 5 | add_executable(${PROJECT_NAME} ${_src}) 6 | 7 | target_link_libraries(${PROJECT_NAME} PRIVATE syscmdline) -------------------------------------------------------------------------------- /3rdparty/qwindowkit-1.3.2/qmsetup/src/syscmdline/syscmdlineConfig.cmake.in: -------------------------------------------------------------------------------- 1 | @PACKAGE_INIT@ 2 | 3 | include(CMakeFindDependencyMacro) 4 | 5 | include("${CMAKE_CURRENT_LIST_DIR}/syscmdlineTargets.cmake") -------------------------------------------------------------------------------- /3rdparty/qwindowkit-1.3.2/qmsetup/src/syscmdline/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(basic) -------------------------------------------------------------------------------- /3rdparty/qwindowkit-1.3.2/qmsetup/src/syscmdline/tests/basic/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project(tst_basic) 2 | 3 | file(GLOB _src *.h *.cpp) 4 | 5 | add_executable(${PROJECT_NAME} ${_src}) 6 | 7 | target_link_libraries(${PROJECT_NAME} PRIVATE syscmdline) -------------------------------------------------------------------------------- /3rdparty/qwindowkit/bin/debug/QWKCored.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qwindowkit/bin/debug/QWKCored.dll -------------------------------------------------------------------------------- /3rdparty/qwindowkit/bin/debug/QWKWidgetsd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qwindowkit/bin/debug/QWKWidgetsd.dll -------------------------------------------------------------------------------- /3rdparty/qwindowkit/bin/release/QWKCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qwindowkit/bin/release/QWKCore.dll -------------------------------------------------------------------------------- /3rdparty/qwindowkit/bin/release/QWKWidgets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qwindowkit/bin/release/QWKWidgets.dll -------------------------------------------------------------------------------- /3rdparty/qwindowkit/lib/debug/QWKCored.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qwindowkit/lib/debug/QWKCored.lib -------------------------------------------------------------------------------- /3rdparty/qwindowkit/lib/debug/QWKWidgetsd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qwindowkit/lib/debug/QWKWidgetsd.lib -------------------------------------------------------------------------------- /3rdparty/qwindowkit/lib/release/QWKCore.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qwindowkit/lib/release/QWKCore.lib -------------------------------------------------------------------------------- /3rdparty/qwindowkit/lib/release/QWKWidgets.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/3rdparty/qwindowkit/lib/release/QWKWidgets.lib -------------------------------------------------------------------------------- /FluControls/FliListViewItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/FluControls/FliListViewItem.cpp -------------------------------------------------------------------------------- /FluControls/FliListViewItem.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "FluWidget.h" 4 | 5 | class FliListViewItem : public QWidget 6 | { 7 | }; 8 | -------------------------------------------------------------------------------- /FluControls/FluColorLabel.cpp: -------------------------------------------------------------------------------- 1 | #include "FluColorLabel.h" 2 | -------------------------------------------------------------------------------- /FluControls/FluColorPickerButton.cpp: -------------------------------------------------------------------------------- 1 | #include "FluColorPickerButton.h" 2 | -------------------------------------------------------------------------------- /FluControls/FluColorView.cpp: -------------------------------------------------------------------------------- 1 | #include "FluColorView.h" 2 | -------------------------------------------------------------------------------- /FluControls/FluCommandBar.cpp: -------------------------------------------------------------------------------- 1 | #include "FluCommandBar.h" 2 | -------------------------------------------------------------------------------- /FluControls/FluCommandBarItem.cpp: -------------------------------------------------------------------------------- 1 | #include "FluCommandBarItem.h" 2 | -------------------------------------------------------------------------------- /FluControls/FluCommandBarItemType.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | enum class FluCommandBarItemType 4 | { 5 | icon, 6 | iconText, 7 | more, 8 | }; -------------------------------------------------------------------------------- /FluControls/FluCommandBarSplitItem.cpp: -------------------------------------------------------------------------------- 1 | #include "FluCommandBarSplitItem.h" 2 | -------------------------------------------------------------------------------- /FluControls/FluIntValidator.cpp: -------------------------------------------------------------------------------- 1 | #include "FluIntValidator.h" 2 | -------------------------------------------------------------------------------- /FluControls/FluMSNavigationView.cpp: -------------------------------------------------------------------------------- 1 | #include "FluMSNavigationView.h" 2 | -------------------------------------------------------------------------------- /FluControls/FluMenuAniType.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | enum class FluMenuAniType 4 | { 5 | none = 0, 6 | dropDown, 7 | pullUp = 2, 8 | }; -------------------------------------------------------------------------------- /FluControls/FluPaginationItem.cpp: -------------------------------------------------------------------------------- 1 | #include "FluPaginationItem.h" 2 | -------------------------------------------------------------------------------- /FluControls/FluTeachingTip.cpp: -------------------------------------------------------------------------------- 1 | #include "FluTeachingTip.h" 2 | -------------------------------------------------------------------------------- /FluControls/FluToggleButton.cpp: -------------------------------------------------------------------------------- 1 | #include "FluToggleButton.h" 2 | -------------------------------------------------------------------------------- /FluControls/FluToggleSwitch.cpp: -------------------------------------------------------------------------------- 1 | #include "FluToggleSwitch.h" 2 | -------------------------------------------------------------------------------- /FluControls/FluToggleSwitchEx.cpp: -------------------------------------------------------------------------------- 1 | #include "FluToggleSwitchEx.h" 2 | -------------------------------------------------------------------------------- /FluControls/FluValueObject.cpp: -------------------------------------------------------------------------------- 1 | #include "FluValueObject.h" 2 | -------------------------------------------------------------------------------- /FluExamples/FluAllGlobalColorDemo.cpp: -------------------------------------------------------------------------------- 1 | #include "FluAllGlobalColorDemo.h" 2 | -------------------------------------------------------------------------------- /FluExamples/FluCommandBarDemo.cpp: -------------------------------------------------------------------------------- 1 | #include "FluCommandBarDemo.h" 2 | -------------------------------------------------------------------------------- /FluExamples/FluLineSeriesDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/FluExamples/FluLineSeriesDemo.cpp -------------------------------------------------------------------------------- /FluExamples/FluListViewDemo.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "../FluControls/FluListView.h" 4 | 5 | class FluListViewDemo : public FluWidget 6 | { 7 | Q_OBJECT 8 | public: 9 | FluListViewDemo(QWidget* parent = nullptr); 10 | }; 11 | -------------------------------------------------------------------------------- /FluExamples/FluPaginationDemo.cpp: -------------------------------------------------------------------------------- 1 | #include "FluPaginationDemo.h" 2 | -------------------------------------------------------------------------------- /FluExamples/FluPieSeriesDemo.cpp: -------------------------------------------------------------------------------- 1 | #include "FluPieSeriesDemo.h" -------------------------------------------------------------------------------- /FluExamples/FluQrCodeDemo.cpp: -------------------------------------------------------------------------------- 1 | #include "FluQrCodeDemo.h" -------------------------------------------------------------------------------- /FluExamples/FluShortcutPickerDemo.cpp: -------------------------------------------------------------------------------- 1 | #include "FluShortcutPickerDemo.h" 2 | -------------------------------------------------------------------------------- /FluExamples/FluSplitterDemo.cpp: -------------------------------------------------------------------------------- 1 | #include "FluSplitterDemo.h" 2 | -------------------------------------------------------------------------------- /FluExamples/FluTriangleDemo.cpp: -------------------------------------------------------------------------------- 1 | #include "FluTriangleDemo.h" 2 | 3 | FluTriangleDemo::FluTriangleDemo(QWidget* parent /*= nullptr*/) : FluTemplateDemo(parent) 4 | { 5 | auto triangle = new FluTriangle(this); 6 | triangle->move(100, 100); 7 | } 8 | -------------------------------------------------------------------------------- /FluIconTool/FluIconToolWidget.cpp: -------------------------------------------------------------------------------- 1 | #include "FluIconToolWidget.h" 2 | -------------------------------------------------------------------------------- /FluIconTool/FluTempDemo.cpp: -------------------------------------------------------------------------------- 1 | #include "FluTempDemo.h" 2 | -------------------------------------------------------------------------------- /FluIconTool/FluTempDemo.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | class FluTempDemo : public QWidget 6 | { 7 | Q_OBJECT 8 | public: 9 | FluTempDemo(QWidget* parent = nullptr) : QWidget(parent) 10 | { 11 | } 12 | }; 13 | -------------------------------------------------------------------------------- /FluUtils/FluUtils.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "FluIconUtils.h" 4 | #include "FluLogUtils.h" 5 | #include "FluStyleSheetUitls.h" 6 | #include "FluThemeUtils.h" 7 | #include "FluObjectPtrUtils.h" 8 | #include "FluConfigUtils.h" 9 | -------------------------------------------------------------------------------- /FluUtils/FluUtilsFonts.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | ../res/Segoe_Fluent_Icons.ttf 4 | 5 | 6 | -------------------------------------------------------------------------------- /FluWinGallery/FluWinGallery.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/FluWinGallery/FluWinGallery.rc -------------------------------------------------------------------------------- /FluWinGallery/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/FluWinGallery/favicon.ico -------------------------------------------------------------------------------- /StyleSheet/custom/FluBorder.qss: -------------------------------------------------------------------------------- 1 | FluBorder { 2 | color: [[TextColor]]; 3 | background-color: [[BackGroundColor]]; 4 | border: [[BorderWith]] solid [[BorderColor]]; 5 | border-radius: 4px; 6 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluBusyProgressRing.qss: -------------------------------------------------------------------------------- 1 | FluBusyProgressRing { 2 | qproperty-circleColor: rgb(118, 185, 237); 3 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluCalendarView.qss: -------------------------------------------------------------------------------- 1 | /*FluCalendarView qss*/ 2 | 3 | FluCalendarView { 4 | background-color: rgba(243, 145, 199, 0.95); 5 | border: 1px solid rgb(255, 172, 220); 6 | border-radius: 4px; 7 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluCircleDot.qss: -------------------------------------------------------------------------------- 1 | FluCircleDot { 2 | background-color: rgb(118, 185, 237); 3 | border: 1px solid rgb(118, 185, 237); 4 | border-radius: 5px; 5 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluColorButton.qss: -------------------------------------------------------------------------------- 1 | FluColorButton { 2 | background-color: [[backgroundColor]]; 3 | border-radius: 4px; 4 | width: 30px; 5 | height: 30px; 6 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluColorFlyout.qss: -------------------------------------------------------------------------------- 1 | FluColorFlyout { 2 | background-color: rgba(243, 145, 199, 0.95); 3 | border-radius: 8px; 4 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluConfirmFlyout.qss: -------------------------------------------------------------------------------- 1 | FluConfirmFlyout { 2 | background-color: rgb(44, 44, 44); 3 | /* background-color: aquamarine; */ 4 | border-radius: 8px; 5 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluGalleryWindow.qss: -------------------------------------------------------------------------------- 1 | FluGalleryWindow { 2 | background-color: rgb(250, 118, 188); 3 | } 4 | 5 | #titleBar { 6 | color: rgb(73, 66, 71); 7 | background-color: rgb(250, 118, 188); 8 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluHNavigationView.qss: -------------------------------------------------------------------------------- 1 | FluHNavigationView { 2 | background-color: transparent; 3 | /* background-color: blueviolet; */ 4 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluHScrollView.qss: -------------------------------------------------------------------------------- 1 | /*The scroll view qss*/ 2 | 3 | #contextWidget { 4 | background-color: transparent; 5 | } 6 | 7 | QScrollArea { 8 | background-color: transparent; 9 | border: none; 10 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluHSplitLine.qss: -------------------------------------------------------------------------------- 1 | FluHSplitLine { 2 | border: 1px solid rgb(255, 172, 220); 3 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluInfoBadge.qss: -------------------------------------------------------------------------------- 1 | FluInfoBadge { 2 | background-color: rgb(255, 77, 79); 3 | padding: 2px; 4 | font-size: 12px; 5 | color: white; 6 | border-radius: 11px; 7 | min-height: 18px; 8 | min-width: 18px; 9 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluMSPage.qss: -------------------------------------------------------------------------------- 1 | FluMSPage { 2 | background-color: rgb(250, 118, 188); 3 | border-top-left-radius: 8px; 4 | border: 1px solid rgb(248, 175, 220); 5 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluMSWindow.qss: -------------------------------------------------------------------------------- 1 | FluMSWindow { 2 | background-color: rgb(32, 32, 32); 3 | } 4 | 5 | #titleBar { 6 | background-color: rgb(32, 32, 32); 7 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluPivot.qss: -------------------------------------------------------------------------------- 1 | FluPivot { 2 | background-color: rgb(32, 32, 32); 3 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluPivotTitleBar.qss: -------------------------------------------------------------------------------- 1 | FluPivotTitleBar { 2 | background-color: transparent; 3 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluRatingControl.qss: -------------------------------------------------------------------------------- 1 | FluRatingControl { 2 | background-color: transparent; 3 | border: 1px solid transparent; 4 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluRotationButton.qss: -------------------------------------------------------------------------------- 1 | FluRotationButton { 2 | border-radius: 4px; 3 | background-color: transparent; 4 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluRoundMenu.qss: -------------------------------------------------------------------------------- 1 | FluRoundMenu { 2 | background-color: transparent; 3 | border: none; 4 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluScrollBar.qss: -------------------------------------------------------------------------------- 1 | FluScrollBar { 2 | qproperty-trunkBackgroundColor: rgb(243, 145, 199); 3 | qproperty-handleBackgroundColor: rgb(138, 138, 138); 4 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluSegmented.qss: -------------------------------------------------------------------------------- 1 | FluSegmented { 2 | border: 1px solid rgb(53, 53, 53); 3 | background-color: rgba(32, 32, 32, 0.85); 4 | border-radius: 4px; 5 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluTemplateDemo.qss: -------------------------------------------------------------------------------- 1 | FluTemplateDemo { 2 | background-color: rgb(32, 32, 32); 3 | } 4 | 5 | #titleBar { 6 | color: rgb(73, 66, 71); 7 | background-color: rgb(32, 32, 32); 8 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluVFlyout.qss: -------------------------------------------------------------------------------- 1 | FluVFlyout { 2 | border-radius: 8px; 3 | } 4 | 5 | #shadowWidget { 6 | background-color: rgb(44, 44, 44); 7 | border-radius: 8px; 8 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluVRadioGroupBox.qss: -------------------------------------------------------------------------------- 1 | QGroupBox { 2 | border: none; 3 | /* border: 1px solid red; */ 4 | } 5 | 6 | QGroupBox::title { 7 | color: rgb(73, 66, 71); 8 | subcontrol-origin: margin; 9 | subcontrol-position: top left; 10 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluVSplitLine.qss: -------------------------------------------------------------------------------- 1 | FluVSplitLine { 2 | background-color: rgb(255, 172, 220); 3 | } -------------------------------------------------------------------------------- /StyleSheet/custom/FluWindowKitWidget.qss: -------------------------------------------------------------------------------- 1 | FluWindowKitWidget { 2 | background-color: rgb(32, 32, 32); 3 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluBorder.qss: -------------------------------------------------------------------------------- 1 | FluBorder { 2 | color: [[TextColor]]; 3 | background-color: [[BackGroundColor]]; 4 | border: [[BorderWith]] solid [[BorderColor]]; 5 | border-radius: 4px; 6 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluBusyProgressRing.qss: -------------------------------------------------------------------------------- 1 | FluBusyProgressRing { 2 | qproperty-circleColor: rgb(118, 185, 237); 3 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluCalendarView.qss: -------------------------------------------------------------------------------- 1 | /*FluCalendarView qss*/ 2 | 3 | FluCalendarView { 4 | background-color: rgb(31, 31, 31); 5 | border: 1px solid rgb(48, 48, 48); 6 | border-radius: 4px; 7 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluCircleDot.qss: -------------------------------------------------------------------------------- 1 | FluCircleDot { 2 | background-color: rgb(118, 185, 237); 3 | border: 1px solid rgb(118, 185, 237); 4 | border-radius: 5px; 5 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluColorButton.qss: -------------------------------------------------------------------------------- 1 | FluColorButton { 2 | background-color: [[backgroundColor]]; 3 | border-radius: 4px; 4 | width: 30px; 5 | height: 30px; 6 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluColorFlyout.qss: -------------------------------------------------------------------------------- 1 | FluColorFlyout { 2 | background-color: rgb(45, 45, 45); 3 | border-radius: 8px; 4 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluCommandBar.qss: -------------------------------------------------------------------------------- 1 | FluCommandBar { 2 | background-color: rgb(45, 45, 45); 3 | border-radius: 4px; 4 | border: 1px solid rgb(53, 53, 53); 5 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluConfirmFlyout.qss: -------------------------------------------------------------------------------- 1 | FluConfirmFlyout { 2 | background-color: rgb(44, 44, 44); 3 | /* background-color: aquamarine; */ 4 | border-radius: 8px; 5 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluGalleryWindow.qss: -------------------------------------------------------------------------------- 1 | FluGalleryWindow { 2 | background-color: rgb(32, 32, 32); 3 | } 4 | 5 | #titleBar { 6 | color: white; 7 | background-color: rgb(32, 32, 32); 8 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluHSplitLine.qss: -------------------------------------------------------------------------------- 1 | FluHSplitLine { 2 | background-color: rgb(61, 61, 61); 3 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluInfoBadge.qss: -------------------------------------------------------------------------------- 1 | FluInfoBadge { 2 | background-color: rgb(255, 77, 79); 3 | padding: 2px; 4 | font-size: 12px; 5 | color: white; 6 | border-radius: 11px; 7 | min-height: 18px; 8 | min-width: 18px; 9 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluMSPage.qss: -------------------------------------------------------------------------------- 1 | FluMSPage { 2 | background-color: rgb(39, 39, 39); 3 | border-top-left-radius: 8px; 4 | border: 1px solid rgb(29, 29, 29); 5 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluMSWindow.qss: -------------------------------------------------------------------------------- 1 | FluMSWindow { 2 | background-color: rgb(32, 32, 32); 3 | } 4 | 5 | #titleBar { 6 | background-color: rgb(32, 32, 32); 7 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluPagination.qss: -------------------------------------------------------------------------------- 1 | FluPagination { 2 | background-color: transparent; 3 | border: 1px solid transparent; 4 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluPivot.qss: -------------------------------------------------------------------------------- 1 | FluPivot { 2 | background-color: rgb(32, 32, 32); 3 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluPivotTitleBar.qss: -------------------------------------------------------------------------------- 1 | FluPivotTitleBar { 2 | background-color: transparent; 3 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluRotationButton.qss: -------------------------------------------------------------------------------- 1 | FluRotationButton { 2 | border-radius: 4px; 3 | background-color: transparent; 4 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluRoundMenu.qss: -------------------------------------------------------------------------------- 1 | FluRoundMenu { 2 | background-color: transparent; 3 | border: none; 4 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluScrollBar.qss: -------------------------------------------------------------------------------- 1 | FluScrollBar { 2 | qproperty-trunkBackgroundColor: rgb(44, 44, 44); 3 | qproperty-handleBackgroundColor: rgb(159, 159, 159); 4 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluSegmented.qss: -------------------------------------------------------------------------------- 1 | FluSegmented { 2 | border: 1px solid rgb(53, 53, 53); 3 | background-color: rgba(32, 32, 32, 0.85); 4 | border-radius: 4px; 5 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluTemplateDemo.qss: -------------------------------------------------------------------------------- 1 | FluTemplateDemo { 2 | background-color: rgb(32, 32, 32); 3 | } 4 | 5 | #titleBar { 6 | color: white; 7 | background-color: rgb(32, 32, 32); 8 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluVFlyout.qss: -------------------------------------------------------------------------------- 1 | FluVFlyout { 2 | border-radius: 8px; 3 | } 4 | 5 | #shadowWidget { 6 | background-color: rgb(44, 44, 44); 7 | border-radius: 8px; 8 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluVRadioGroupBox.qss: -------------------------------------------------------------------------------- 1 | QGroupBox { 2 | border: none; 3 | /* border: 1px solid red; */ 4 | } 5 | 6 | QGroupBox::title { 7 | color: white; 8 | subcontrol-origin: margin; 9 | subcontrol-position: top left; 10 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluVSplitLine.qss: -------------------------------------------------------------------------------- 1 | FluVSplitLine { 2 | background-color: rgb(61, 61, 61); 3 | } -------------------------------------------------------------------------------- /StyleSheet/dark/FluWindowKitWidget.qss: -------------------------------------------------------------------------------- 1 | FluWindowKitWidget { 2 | background-color: rgb(32, 32, 32); 3 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluBorder.qss: -------------------------------------------------------------------------------- 1 | FluBorder { 2 | color: [[TextColor]]; 3 | background-color: [[BackGroundColor]]; 4 | border: [[BorderWith]] solid [[BorderColor]]; 5 | border-radius: 4px; 6 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluBusyProgressRing.qss: -------------------------------------------------------------------------------- 1 | FluBusyProgressRing { 2 | qproperty-circleColor: rgb(0, 90, 158); 3 | /* qproperty-circleColor: pink; */ 4 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluCalendarView.qss: -------------------------------------------------------------------------------- 1 | /*FluCalendarView qss*/ 2 | 3 | FluCalendarView { 4 | background-color: rgb(255, 255, 255); 5 | border: 1px solid rgb(229, 229, 229); 6 | border-radius: 4px; 7 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluCircleDot.qss: -------------------------------------------------------------------------------- 1 | FluCircleDot { 2 | background-color: rgb(0, 120, 215); 3 | border: 1px solid rgb(0, 120, 215); 4 | border-radius: 5px; 5 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluColorButton.qss: -------------------------------------------------------------------------------- 1 | FluColorButton { 2 | background-color: [[backgroundColor]]; 3 | border-radius: 4px; 4 | width: 30px; 5 | height: 30px; 6 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluColorFlyout.qss: -------------------------------------------------------------------------------- 1 | FluColorFlyout { 2 | background-color: rgb(249, 249, 249); 3 | border-radius: 8px; 4 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluCommandBar.qss: -------------------------------------------------------------------------------- 1 | FluCommandBar { 2 | /* background-color: aqua; */ 3 | background-color: rgb(243, 243, 243); 4 | border-radius: 4px; 5 | border: 1px solid rgb(229, 229, 229); 6 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluConfirmFlyout.qss: -------------------------------------------------------------------------------- 1 | FluConfirmFlyout { 2 | /* background-color: rgb(249, 249, 249); */ 3 | /* background-color: aquamarine; */ 4 | border-radius: 8px; 5 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluGalleryWindow.qss: -------------------------------------------------------------------------------- 1 | FluGalleryWindow { 2 | background-color: rgb(243, 243, 243); 3 | } 4 | 5 | #titleBar { 6 | background-color: rgb(243, 243, 243); 7 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluHNavigationView.qss: -------------------------------------------------------------------------------- 1 | FluHNavigationView { 2 | background-color: transparent; 3 | /* background-color: blueviolet; */ 4 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluHScrollView.qss: -------------------------------------------------------------------------------- 1 | /*The scroll view qss*/ 2 | 3 | #contextWidget { 4 | background-color: transparent; 5 | } 6 | 7 | QScrollArea { 8 | background-color: transparent; 9 | border: none; 10 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluHSplitLine.qss: -------------------------------------------------------------------------------- 1 | FluHSplitLine { 2 | background-color: rgb(234, 234, 234); 3 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluHomePageTitle.qss: -------------------------------------------------------------------------------- 1 | FluHomePageTitle { 2 | border-radius: 8px; 3 | } 4 | 5 | #titleLabel1 { 6 | font-size: 32px; 7 | } 8 | 9 | #titleLabel2 { 10 | font-size: 16px; 11 | /* font-weight: bold; */ 12 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluInfoBadge.qss: -------------------------------------------------------------------------------- 1 | FluInfoBadge { 2 | background-color: rgb(255, 77, 79); 3 | padding: 2px; 4 | font-size: 12px; 5 | color: white; 6 | border-radius: 11px; 7 | min-height: 18px; 8 | min-width: 18px; 9 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluMSPage.qss: -------------------------------------------------------------------------------- 1 | FluMSPage { 2 | background-color: rgb(249, 249, 249); 3 | border-top-left-radius: 8px; 4 | border: 1px solid rgb(229, 229, 229); 5 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluMSWindow.qss: -------------------------------------------------------------------------------- 1 | FluMSWindow { 2 | background-color: rgb(243, 243, 243); 3 | } 4 | 5 | #titleBar { 6 | background-color: rgb(243, 243, 243); 7 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluPagination.qss: -------------------------------------------------------------------------------- 1 | FluPagination { 2 | background-color: transparent; 3 | border: 1px solid transparent; 4 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluPivot.qss: -------------------------------------------------------------------------------- 1 | FluPivot { 2 | background-color: rgb(243, 243, 243); 3 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluPivotTitleBar.qss: -------------------------------------------------------------------------------- 1 | FluPivotTitleBar { 2 | background-color: transparent; 3 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluRatingControl.qss: -------------------------------------------------------------------------------- 1 | FluRatingControl { 2 | background-color: transparent; 3 | border: 1px solid transparent; 4 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluRotationButton.qss: -------------------------------------------------------------------------------- 1 | FluRotationButton { 2 | border-radius: 4px; 3 | background-color: transparent; 4 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluRoundMenu.qss: -------------------------------------------------------------------------------- 1 | FluRoundMenu { 2 | background-color: transparent; 3 | border: none; 4 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluScrollBar.qss: -------------------------------------------------------------------------------- 1 | FluScrollBar { 2 | qproperty-trunkBackgroundColor: rgb(249, 249, 249); 3 | qproperty-handleBackgroundColor: rgb(138, 138, 138); 4 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluSegmented.qss: -------------------------------------------------------------------------------- 1 | FluSegmented { 2 | border: 1px solid rgb(234, 234, 234); 3 | background-color: rgba(232, 232, 232, 0.85); 4 | border-radius: 4px; 5 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluTemplateDemo.qss: -------------------------------------------------------------------------------- 1 | FluTemplateDemo { 2 | background-color: rgb(243, 243, 243); 3 | } 4 | 5 | #titleBar { 6 | background-color: rgb(243, 243, 243); 7 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluVRadioGroupBox.qss: -------------------------------------------------------------------------------- 1 | QGroupBox { 2 | border: none; 3 | /* border: 1px solid red; */ 4 | } 5 | 6 | QGroupBox::title { 7 | subcontrol-origin: margin; 8 | subcontrol-position: top left; 9 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluVSplitLine.qss: -------------------------------------------------------------------------------- 1 | FluVSplitLine { 2 | background-color: rgb(234, 234, 234); 3 | } -------------------------------------------------------------------------------- /StyleSheet/light/FluWindowKitWidget.qss: -------------------------------------------------------------------------------- 1 | FluWindowKitWidget { 2 | background-color: rgb(243, 243, 243); 3 | } -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- 1 | rd /r /q x64 2 | rd /r /q FluControls\x64 3 | rd /r /q FluExamples\x64 4 | rd /r /q FluIconTool\x64 5 | rd /r /q FluUtils\x64 6 | rd /r /q FluWinGallery\x64 -------------------------------------------------------------------------------- /code/AppBarButtonPageCode1.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto appBarButton = new FluAppBarButton(FluAwesomeType::Like); 3 | appBarButton->setText("SymbolIcon"); 4 | ``` 5 | 6 | -------------------------------------------------------------------------------- /code/AppBarButtonPageCode2.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto appBarButton = new FluAppBarButton(FluAwesomeType::Save); 3 | appBarButton->setText("Save"); 4 | appBarButton->setShortCut(QKeySequence(Qt::CTRL + Qt::Key_S)); 5 | ``` 6 | 7 | -------------------------------------------------------------------------------- /code/AppBarToggleButtonPageCode1.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto appBarButton = new FluAppBarToggleButton(FluAwesomeType::Like); 3 | appBarButton->setText("SymbolIcon"); 4 | ``` 5 | 6 | -------------------------------------------------------------------------------- /code/AutoSuggestBoxPageCode1.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto autoSuggestBox = new FluAutoSuggestBox; 3 | autoSuggestBox->setFixedWidth(300); 4 | autoSuggestBox->setKeys({tr("a"), tr("ab"), tr("abc"), tr("abcd"), tr("abcde")}); 5 | ``` 6 | 7 | -------------------------------------------------------------------------------- /code/ButtonPageCode1.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto btn1 = new FluPushButton(this); 3 | btn1->setText("Standard XAML button"); 4 | ``` -------------------------------------------------------------------------------- /code/ButtonPageCode2.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto btn2 = new FluGraphicalButton; 3 | btn2->setIcon(QPixmap("../res/Slices.png")); 4 | ``` 5 | -------------------------------------------------------------------------------- /code/ButtonPageCode3.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto btn3 = new FluStyleButton; 3 | btn3->setText("Accent style button."); 4 | ``` 5 | 6 | -------------------------------------------------------------------------------- /code/CalendarDatePickerPageCode1.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto calendarView = new FluCalendarDatePicker; 3 | ``` 4 | 5 | -------------------------------------------------------------------------------- /code/CalendarViewPageCode1.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto calendarView = new FluCalendarView; 3 | ``` 4 | 5 | -------------------------------------------------------------------------------- /code/CheckBoxPageCode1.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto checkBox = new FluCheckBox("Two-State CheckBox", this); 3 | ``` 4 | 5 | -------------------------------------------------------------------------------- /code/CheckBoxPageCode2.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto checkBox2 = new FluCheckBox("Three-state CheckBox", this); 3 | checkBox2->setTristate(true); 4 | ``` 5 | 6 | -------------------------------------------------------------------------------- /code/DatePickerPageCode1.md: -------------------------------------------------------------------------------- 1 | auto datePicker = new FluDatePicker; 2 | -------------------------------------------------------------------------------- /code/HyperLinkButtonPageCode1.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto btn1 = new FluHyperLinkButton("https://github.com/mowangshuying/FluentUI"); 3 | btn1->setText("FluentUI Repo Url"); 4 | ``` -------------------------------------------------------------------------------- /code/InfoBarPageCode1.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | FluShortInfoBar* sInfoBar = new FluShortInfoBar(FluShortInfoBarType::Info); 3 | sInfoBar->setFixedWidth(270); 4 | ``` 5 | 6 | -------------------------------------------------------------------------------- /code/NumberBoxPageCode1.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto spinBox = new FluSpinBox(this); 3 | spinBox->setFixedWidth(150); 4 | ``` 5 | 6 | -------------------------------------------------------------------------------- /code/NumberBoxPageCode2.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto doubleSpinBox = new FluDoubleSpinBox(this); 3 | doubleSpinBox->setFixedWidth(150); 4 | ``` 5 | 6 | -------------------------------------------------------------------------------- /code/PasswordBoxPageCode1.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto passwordBox = new FluPasswordBox(this); 3 | passwordBox->setFixedWidth(240); 4 | ``` 5 | 6 | -------------------------------------------------------------------------------- /code/PasswordBoxPageCode2.md: -------------------------------------------------------------------------------- 1 | ``` 2 | auto passwordBox2 = new FluPasswordBox(this); 3 | passwordBox2->setMaskC(0x2a); 4 | passwordBox2->setFixedWidth(240); 5 | ``` -------------------------------------------------------------------------------- /code/ProgressBarPageCode1.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto progressBar1 = new FluProgressBar; 3 | progressBar1->setValue(75); 4 | progressBar1->setFixedWidth(150); 5 | ``` 6 | 7 | -------------------------------------------------------------------------------- /code/ProgressRingPageCode1.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto progressRing1 = new FluProgressRing; 3 | progressRing1->move(50, 50); 4 | progressRing1->setWorking(true); 5 | ``` 6 | 7 | -------------------------------------------------------------------------------- /code/ProgressRingPageCode2.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto progressRing2 = new FluProgressRing; 3 | progressRing2->move(50, 50); 4 | progressRing2->setShowText(true); 5 | ``` 6 | 7 | -------------------------------------------------------------------------------- /code/ProgressRingPageCode3.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto busyRing = new FluBusyProgressRing; 3 | ``` 4 | 5 | -------------------------------------------------------------------------------- /code/RatingControlPageCode1.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto ratingControl = new FluRatingControl; 3 | ``` 4 | 5 | -------------------------------------------------------------------------------- /code/RepeatButtonPageCode1.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto repeatButton = new FluRepeatButton; 3 | repeatButton->setFixedSize(120, 30); 4 | repeatButton->setText("Click and hold"); 5 | ``` -------------------------------------------------------------------------------- /code/SliderPageCode1.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto hSlider = new FluSlider; 3 | hSlider->setOrientation(Qt::Horizontal); 4 | hSlider->setMinimum(0); 5 | hSlider->setMaximum(100); 6 | hSlider->setSingleStep(10); 7 | ``` 8 | -------------------------------------------------------------------------------- /code/SliderPageCode2.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto vSlider = new FluSlider; 3 | vSlider->setOrientation(Qt::Vertical); 4 | vSlider->setMinimum(0); 5 | vSlider->setMaximum(100); 6 | vSlider->setSingleStep(5); 7 | ``` -------------------------------------------------------------------------------- /code/TextBoxPageCode1.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto textEdit = new FluTextEdit; 3 | textEdit->setFixedWidth(300); 4 | textEdit->move(50, 50); 5 | textEdit->setAutoAdjustSize(true); 6 | ``` 7 | 8 | -------------------------------------------------------------------------------- /code/TimePickerPageCode1.md: -------------------------------------------------------------------------------- 1 | auto timePickerAp = new FluTimePickerAP; 2 | -------------------------------------------------------------------------------- /code/TimePickerPageCode2.md: -------------------------------------------------------------------------------- 1 | auto timePicker24H = new FluTimePicker24H; 2 | -------------------------------------------------------------------------------- /code/ToggleButtonPageCode1.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto btn1 = new FluToggleButton(this); 3 | btn1->setText("Toggle Button"); 4 | ``` 5 | 6 | -------------------------------------------------------------------------------- /code/ToggleSwitchPageCode1.md: -------------------------------------------------------------------------------- 1 | ```cpp 2 | auto toggleSwitch = new FluToggleSwitch; 3 | ``` 4 | 5 | -------------------------------------------------------------------------------- /config/config.ini: -------------------------------------------------------------------------------- 1 | [config] 2 | language=zh-CN 3 | theme=Light 4 | -------------------------------------------------------------------------------- /dellogs.bat: -------------------------------------------------------------------------------- 1 | @REM del logs. 2 | cd log 3 | del *.log -------------------------------------------------------------------------------- /docs/ATitileOfPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/docs/ATitileOfPage.png -------------------------------------------------------------------------------- /docs/TimeLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/docs/TimeLine.png -------------------------------------------------------------------------------- /docs/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/docs/blue.png -------------------------------------------------------------------------------- /docs/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/docs/button.png -------------------------------------------------------------------------------- /docs/change code to utf-8.md: -------------------------------------------------------------------------------- 1 | 1.安装插件 2 | 3 | ![image-20231224083532092](C:\Users\TS\AppData\Roaming\Typora\typora-user-images\image-20231224083532092.png) 4 | 5 | 2.设置编码 6 | 7 | > 选中当前项目——右键属性——配置属性——C/C++——命令行——输入/utf-8 8 | > 9 | > 10 | 11 | -------------------------------------------------------------------------------- /docs/gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/docs/gallery.png -------------------------------------------------------------------------------- /docs/windowkit-widget-MacOs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/docs/windowkit-widget-MacOs.png -------------------------------------------------------------------------------- /format.bat: -------------------------------------------------------------------------------- 1 | start "" "C:\Program Files\Git\git-bash.exe" -c "./format.sh;bash" 2 | -------------------------------------------------------------------------------- /i18n/en-US.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/i18n/en-US.qm -------------------------------------------------------------------------------- /i18n/zh-CN.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/i18n/zh-CN.qm -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/log/.gitkeep -------------------------------------------------------------------------------- /lupdate.bat: -------------------------------------------------------------------------------- 1 | C:\Qt\6.5.1\msvc2019_64\bin\lupdate.exe ./FluControls ./FluUtils ./FluWinGallery -ts i18n/en-US.ts i18n/zh-CN.ts -------------------------------------------------------------------------------- /pushTag.bat: -------------------------------------------------------------------------------- 1 | git push origin --tags 2 | pause 3 | -------------------------------------------------------------------------------- /res/ChevronDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ChevronDown.png -------------------------------------------------------------------------------- /res/ChevronRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ChevronRight.png -------------------------------------------------------------------------------- /res/ChromeClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ChromeClose.png -------------------------------------------------------------------------------- /res/CoffeeCup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/CoffeeCup.png -------------------------------------------------------------------------------- /res/ControlImages/Acrylic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/Acrylic.png -------------------------------------------------------------------------------- /res/ControlImages/AnimatedIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/AnimatedIcon.png -------------------------------------------------------------------------------- /res/ControlImages/AnimatedVisualPlayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/AnimatedVisualPlayer.png -------------------------------------------------------------------------------- /res/ControlImages/AnimationInterop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/AnimationInterop.png -------------------------------------------------------------------------------- /res/ControlImages/AnnotatedScrollBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/AnnotatedScrollBar.png -------------------------------------------------------------------------------- /res/ControlImages/AppBarButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/AppBarButton.png -------------------------------------------------------------------------------- /res/ControlImages/AppBarSeparator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/AppBarSeparator.png -------------------------------------------------------------------------------- /res/ControlImages/AppBarToggleButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/AppBarToggleButton.png -------------------------------------------------------------------------------- /res/ControlImages/AutoSuggestBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/AutoSuggestBox.png -------------------------------------------------------------------------------- /res/ControlImages/AutomationProperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/AutomationProperties.png -------------------------------------------------------------------------------- /res/ControlImages/Border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/Border.png -------------------------------------------------------------------------------- /res/ControlImages/BreadcrumbBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/BreadcrumbBar.png -------------------------------------------------------------------------------- /res/ControlImages/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/Button.png -------------------------------------------------------------------------------- /res/ControlImages/CalendarDatePicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/CalendarDatePicker.png -------------------------------------------------------------------------------- /res/ControlImages/CalendarView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/CalendarView.png -------------------------------------------------------------------------------- /res/ControlImages/Canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/Canvas.png -------------------------------------------------------------------------------- /res/ControlImages/CaptureElement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/CaptureElement.png -------------------------------------------------------------------------------- /res/ControlImages/Checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/Checkbox.png -------------------------------------------------------------------------------- /res/ControlImages/Clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/Clipboard.png -------------------------------------------------------------------------------- /res/ControlImages/ColorPaletteResources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/ColorPaletteResources.png -------------------------------------------------------------------------------- /res/ControlImages/ColorPicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/ColorPicker.png -------------------------------------------------------------------------------- /res/ControlImages/ComboBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/ComboBox.png -------------------------------------------------------------------------------- /res/ControlImages/CommandBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/CommandBar.png -------------------------------------------------------------------------------- /res/ControlImages/CommandBarFlyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/CommandBarFlyout.png -------------------------------------------------------------------------------- /res/ControlImages/CompactSizing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/CompactSizing.png -------------------------------------------------------------------------------- /res/ControlImages/ConnectedAnimation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/ConnectedAnimation.png -------------------------------------------------------------------------------- /res/ControlImages/ContentDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/ContentDialog.png -------------------------------------------------------------------------------- /res/ControlImages/CreateMultipleWindows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/CreateMultipleWindows.png -------------------------------------------------------------------------------- /res/ControlImages/DataGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/DataGrid.png -------------------------------------------------------------------------------- /res/ControlImages/DatePicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/DatePicker.png -------------------------------------------------------------------------------- /res/ControlImages/DropDownButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/DropDownButton.png -------------------------------------------------------------------------------- /res/ControlImages/EasingFunction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/EasingFunction.png -------------------------------------------------------------------------------- /res/ControlImages/Expander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/Expander.png -------------------------------------------------------------------------------- /res/ControlImages/FilePicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/FilePicker.png -------------------------------------------------------------------------------- /res/ControlImages/FlipView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/FlipView.png -------------------------------------------------------------------------------- /res/ControlImages/Flyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/Flyout.png -------------------------------------------------------------------------------- /res/ControlImages/Grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/Grid.png -------------------------------------------------------------------------------- /res/ControlImages/GridView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/GridView.png -------------------------------------------------------------------------------- /res/ControlImages/HyperlinkButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/HyperlinkButton.png -------------------------------------------------------------------------------- /res/ControlImages/IconElement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/IconElement.png -------------------------------------------------------------------------------- /res/ControlImages/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/Image.png -------------------------------------------------------------------------------- /res/ControlImages/ImplicitTransition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/ImplicitTransition.png -------------------------------------------------------------------------------- /res/ControlImages/InfoBadge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/InfoBadge.png -------------------------------------------------------------------------------- /res/ControlImages/InfoBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/InfoBar.png -------------------------------------------------------------------------------- /res/ControlImages/InkCanvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/InkCanvas.png -------------------------------------------------------------------------------- /res/ControlImages/InkToolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/InkToolbar.png -------------------------------------------------------------------------------- /res/ControlImages/InputValidation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/InputValidation.png -------------------------------------------------------------------------------- /res/ControlImages/ItemsRepeater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/ItemsRepeater.png -------------------------------------------------------------------------------- /res/ControlImages/ItemsView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/ItemsView.png -------------------------------------------------------------------------------- /res/ControlImages/Line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/Line.png -------------------------------------------------------------------------------- /res/ControlImages/ListBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/ListBox.png -------------------------------------------------------------------------------- /res/ControlImages/ListView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/ListView.png -------------------------------------------------------------------------------- /res/ControlImages/MapControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/MapControl.png -------------------------------------------------------------------------------- /res/ControlImages/MediaPlayerElement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/MediaPlayerElement.png -------------------------------------------------------------------------------- /res/ControlImages/MenuBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/MenuBar.png -------------------------------------------------------------------------------- /res/ControlImages/MenuFlyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/MenuFlyout.png -------------------------------------------------------------------------------- /res/ControlImages/NavigationView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/NavigationView.png -------------------------------------------------------------------------------- /res/ControlImages/NumberBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/NumberBox.png -------------------------------------------------------------------------------- /res/ControlImages/PageTransition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/PageTransition.png -------------------------------------------------------------------------------- /res/ControlImages/ParallaxView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/ParallaxView.png -------------------------------------------------------------------------------- /res/ControlImages/PasswordBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/PasswordBox.png -------------------------------------------------------------------------------- /res/ControlImages/PersonPicture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/PersonPicture.png -------------------------------------------------------------------------------- /res/ControlImages/PipsPager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/PipsPager.png -------------------------------------------------------------------------------- /res/ControlImages/Pivot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/Pivot.png -------------------------------------------------------------------------------- /res/ControlImages/Placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/Placeholder.png -------------------------------------------------------------------------------- /res/ControlImages/ProgressBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/ProgressBar.png -------------------------------------------------------------------------------- /res/ControlImages/ProgressRing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/ProgressRing.png -------------------------------------------------------------------------------- /res/ControlImages/PullToRefresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/PullToRefresh.png -------------------------------------------------------------------------------- /res/ControlImages/RadialGradientBrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/RadialGradientBrush.png -------------------------------------------------------------------------------- /res/ControlImages/RadioButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/RadioButton.png -------------------------------------------------------------------------------- /res/ControlImages/RadioButtons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/RadioButtons.png -------------------------------------------------------------------------------- /res/ControlImages/RatingControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/RatingControl.png -------------------------------------------------------------------------------- /res/ControlImages/RelativePanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/RelativePanel.png -------------------------------------------------------------------------------- /res/ControlImages/RepeatButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/RepeatButton.png -------------------------------------------------------------------------------- /res/ControlImages/RevealFocus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/RevealFocus.png -------------------------------------------------------------------------------- /res/ControlImages/RichEditBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/RichEditBox.png -------------------------------------------------------------------------------- /res/ControlImages/RichTextBlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/RichTextBlock.png -------------------------------------------------------------------------------- /res/ControlImages/ScratchPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/ScratchPad.png -------------------------------------------------------------------------------- /res/ControlImages/ScrollView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/ScrollView.png -------------------------------------------------------------------------------- /res/ControlImages/ScrollViewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/ScrollViewer.png -------------------------------------------------------------------------------- /res/ControlImages/SemanticZoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/SemanticZoom.png -------------------------------------------------------------------------------- /res/ControlImages/Shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/Shape.png -------------------------------------------------------------------------------- /res/ControlImages/Slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/Slider.png -------------------------------------------------------------------------------- /res/ControlImages/Sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/Sound.png -------------------------------------------------------------------------------- /res/ControlImages/SplitButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/SplitButton.png -------------------------------------------------------------------------------- /res/ControlImages/SplitView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/SplitView.png -------------------------------------------------------------------------------- /res/ControlImages/StackPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/StackPanel.png -------------------------------------------------------------------------------- /res/ControlImages/StandardUICommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/StandardUICommand.png -------------------------------------------------------------------------------- /res/ControlImages/SwipeControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/SwipeControl.png -------------------------------------------------------------------------------- /res/ControlImages/TabView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/TabView.png -------------------------------------------------------------------------------- /res/ControlImages/TeachingTip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/TeachingTip.png -------------------------------------------------------------------------------- /res/ControlImages/TextBlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/TextBlock.png -------------------------------------------------------------------------------- /res/ControlImages/TextBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/TextBox.png -------------------------------------------------------------------------------- /res/ControlImages/ThemeTransition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/ThemeTransition.png -------------------------------------------------------------------------------- /res/ControlImages/TimePicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/TimePicker.png -------------------------------------------------------------------------------- /res/ControlImages/TitleBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/TitleBar.png -------------------------------------------------------------------------------- /res/ControlImages/ToggleButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/ToggleButton.png -------------------------------------------------------------------------------- /res/ControlImages/ToggleSplitButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/ToggleSplitButton.png -------------------------------------------------------------------------------- /res/ControlImages/ToggleSwitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/ToggleSwitch.png -------------------------------------------------------------------------------- /res/ControlImages/ToolTip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/ToolTip.png -------------------------------------------------------------------------------- /res/ControlImages/TreeView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/TreeView.png -------------------------------------------------------------------------------- /res/ControlImages/VariableSizedWrapGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/VariableSizedWrapGrid.png -------------------------------------------------------------------------------- /res/ControlImages/Viewbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/Viewbox.png -------------------------------------------------------------------------------- /res/ControlImages/WebView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/WebView.png -------------------------------------------------------------------------------- /res/ControlImages/XamlUICommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlImages/XamlUICommand.png -------------------------------------------------------------------------------- /res/ControlResImages/CheckBox-Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/CheckBox-Black.png -------------------------------------------------------------------------------- /res/ControlResImages/CheckBox-White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/CheckBox-White.png -------------------------------------------------------------------------------- /res/ControlResImages/CheckBoxPressed-Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/CheckBoxPressed-Black.png -------------------------------------------------------------------------------- /res/ControlResImages/CheckBoxPressed-White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/CheckBoxPressed-White.png -------------------------------------------------------------------------------- /res/ControlResImages/CheckboxIndeterminate-Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/CheckboxIndeterminate-Black.png -------------------------------------------------------------------------------- /res/ControlResImages/CheckboxIndeterminate-White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/CheckboxIndeterminate-White.png -------------------------------------------------------------------------------- /res/ControlResImages/ChevronDown-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/ChevronDown-Dark.png -------------------------------------------------------------------------------- /res/ControlResImages/ChevronDown-Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/ChevronDown-Light.png -------------------------------------------------------------------------------- /res/ControlResImages/ChevronRight-Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/ChevronRight-Black.png -------------------------------------------------------------------------------- /res/ControlResImages/ChevronRight-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/ChevronRight-Dark.png -------------------------------------------------------------------------------- /res/ControlResImages/ChevronRight-Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/ChevronRight-Light.png -------------------------------------------------------------------------------- /res/ControlResImages/GradientColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/GradientColor.png -------------------------------------------------------------------------------- /res/ControlResImages/RadioButton-Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/RadioButton-Black.png -------------------------------------------------------------------------------- /res/ControlResImages/RadioButton-White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/RadioButton-White.png -------------------------------------------------------------------------------- /res/ControlResImages/RadioButtonHover-Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/RadioButtonHover-Black.png -------------------------------------------------------------------------------- /res/ControlResImages/RadioButtonHover-White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/RadioButtonHover-White.png -------------------------------------------------------------------------------- /res/ControlResImages/RadioButtonPressed-Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/RadioButtonPressed-Black.png -------------------------------------------------------------------------------- /res/ControlResImages/RadioButtonPressed-White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/RadioButtonPressed-White.png -------------------------------------------------------------------------------- /res/ControlResImages/SpinBoxDown-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/SpinBoxDown-Dark.png -------------------------------------------------------------------------------- /res/ControlResImages/SpinBoxDown-Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/SpinBoxDown-Light.png -------------------------------------------------------------------------------- /res/ControlResImages/SpinBoxDownDisabled-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/SpinBoxDownDisabled-Dark.png -------------------------------------------------------------------------------- /res/ControlResImages/SpinBoxDownDisabled-Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/SpinBoxDownDisabled-Light.png -------------------------------------------------------------------------------- /res/ControlResImages/SpinBoxUp-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/SpinBoxUp-Dark.png -------------------------------------------------------------------------------- /res/ControlResImages/SpinBoxUp-Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/SpinBoxUp-Light.png -------------------------------------------------------------------------------- /res/ControlResImages/SpinBoxUpDisabled-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/SpinBoxUpDisabled-Dark.png -------------------------------------------------------------------------------- /res/ControlResImages/SpinBoxUpDisabled-Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/SpinBoxUpDisabled-Light.png -------------------------------------------------------------------------------- /res/ControlResImages/ToggleSwitchDisabled-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/ToggleSwitchDisabled-Dark.png -------------------------------------------------------------------------------- /res/ControlResImages/ToggleSwitchDisabled-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/ToggleSwitchDisabled-light.png -------------------------------------------------------------------------------- /res/ControlResImages/ToggleSwitchOff-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/ToggleSwitchOff-Dark.png -------------------------------------------------------------------------------- /res/ControlResImages/ToggleSwitchOff-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/ToggleSwitchOff-light.png -------------------------------------------------------------------------------- /res/ControlResImages/ToggleSwitchOffHover-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/ToggleSwitchOffHover-Dark.png -------------------------------------------------------------------------------- /res/ControlResImages/ToggleSwitchOffHover-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/ToggleSwitchOffHover-light.png -------------------------------------------------------------------------------- /res/ControlResImages/ToggleSwitchOffPressed-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/ToggleSwitchOffPressed-Dark.png -------------------------------------------------------------------------------- /res/ControlResImages/ToggleSwitchOffPressed-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/ToggleSwitchOffPressed-light.png -------------------------------------------------------------------------------- /res/ControlResImages/ToggleSwitchOn-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/ToggleSwitchOn-Dark.png -------------------------------------------------------------------------------- /res/ControlResImages/ToggleSwitchOn-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/ToggleSwitchOn-light.png -------------------------------------------------------------------------------- /res/ControlResImages/ToggleSwitchOnHover-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/ToggleSwitchOnHover-Dark.png -------------------------------------------------------------------------------- /res/ControlResImages/ToggleSwitchOnHover-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/ToggleSwitchOnHover-light.png -------------------------------------------------------------------------------- /res/ControlResImages/ToggleSwitchOnPressed-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/ToggleSwitchOnPressed-Dark.png -------------------------------------------------------------------------------- /res/ControlResImages/ToggleSwitchOnPressed-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ControlResImages/ToggleSwitchOnPressed-light.png -------------------------------------------------------------------------------- /res/CopyLinkTeachingTip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/CopyLinkTeachingTip.png -------------------------------------------------------------------------------- /res/GalleryHeaderImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/GalleryHeaderImage.png -------------------------------------------------------------------------------- /res/HomeHeaderTiles/Header-Store.dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/HomeHeaderTiles/Header-Store.dark.png -------------------------------------------------------------------------------- /res/HomeHeaderTiles/Header-Store.light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/HomeHeaderTiles/Header-Store.light.png -------------------------------------------------------------------------------- /res/HomeHeaderTiles/Header-Toolkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/HomeHeaderTiles/Header-Toolkit.png -------------------------------------------------------------------------------- /res/HomeHeaderTiles/Header-WinUIGallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/HomeHeaderTiles/Header-WinUIGallery.png -------------------------------------------------------------------------------- /res/HomeHeaderTiles/Header-WindowsDesign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/HomeHeaderTiles/Header-WindowsDesign.png -------------------------------------------------------------------------------- /res/HomeHeaderTiles/github-mark-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/HomeHeaderTiles/github-mark-white.png -------------------------------------------------------------------------------- /res/HomeHeaderTiles/github-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/HomeHeaderTiles/github-mark.png -------------------------------------------------------------------------------- /res/LottieLogo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/LottieLogo1.png -------------------------------------------------------------------------------- /res/SampleMedia/LandscapeImage1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/SampleMedia/LandscapeImage1.jpg -------------------------------------------------------------------------------- /res/SampleMedia/LandscapeImage10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/SampleMedia/LandscapeImage10.jpg -------------------------------------------------------------------------------- /res/SampleMedia/LandscapeImage11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/SampleMedia/LandscapeImage11.jpg -------------------------------------------------------------------------------- /res/SampleMedia/LandscapeImage12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/SampleMedia/LandscapeImage12.jpg -------------------------------------------------------------------------------- /res/SampleMedia/LandscapeImage13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/SampleMedia/LandscapeImage13.jpg -------------------------------------------------------------------------------- /res/SampleMedia/LandscapeImage2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/SampleMedia/LandscapeImage2.jpg -------------------------------------------------------------------------------- /res/SampleMedia/LandscapeImage3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/SampleMedia/LandscapeImage3.jpg -------------------------------------------------------------------------------- /res/SampleMedia/LandscapeImage4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/SampleMedia/LandscapeImage4.jpg -------------------------------------------------------------------------------- /res/SampleMedia/LandscapeImage5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/SampleMedia/LandscapeImage5.jpg -------------------------------------------------------------------------------- /res/SampleMedia/LandscapeImage6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/SampleMedia/LandscapeImage6.jpg -------------------------------------------------------------------------------- /res/SampleMedia/LandscapeImage7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/SampleMedia/LandscapeImage7.jpg -------------------------------------------------------------------------------- /res/SampleMedia/LandscapeImage8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/SampleMedia/LandscapeImage8.jpg -------------------------------------------------------------------------------- /res/SampleMedia/LandscapeImage9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/SampleMedia/LandscapeImage9.jpg -------------------------------------------------------------------------------- /res/SampleMedia/cliff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/SampleMedia/cliff.jpg -------------------------------------------------------------------------------- /res/SampleMedia/fishes.wmv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/SampleMedia/fishes.wmv -------------------------------------------------------------------------------- /res/SampleMedia/grapes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/SampleMedia/grapes.jpg -------------------------------------------------------------------------------- /res/SampleMedia/ladybug.wmv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/SampleMedia/ladybug.wmv -------------------------------------------------------------------------------- /res/SampleMedia/rainier.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/SampleMedia/rainier.jpg -------------------------------------------------------------------------------- /res/SampleMedia/sunset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/SampleMedia/sunset.jpg -------------------------------------------------------------------------------- /res/SampleMedia/treetops.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/SampleMedia/treetops.jpg -------------------------------------------------------------------------------- /res/SampleMedia/valley.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/SampleMedia/valley.jpg -------------------------------------------------------------------------------- /res/ScrollBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ScrollBottom.png -------------------------------------------------------------------------------- /res/ScrollTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ScrollTop.png -------------------------------------------------------------------------------- /res/Segoe_Fluent_Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Segoe_Fluent_Icons.ttf -------------------------------------------------------------------------------- /res/Slices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Slices.png -------------------------------------------------------------------------------- /res/Slices2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Slices2.png -------------------------------------------------------------------------------- /res/SunBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/SunBlack.png -------------------------------------------------------------------------------- /res/SunWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/SunWhite.png -------------------------------------------------------------------------------- /res/TabViewIcons/cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/TabViewIcons/cmd.png -------------------------------------------------------------------------------- /res/TabViewIcons/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/TabViewIcons/linux.png -------------------------------------------------------------------------------- /res/TabViewIcons/powershell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/TabViewIcons/powershell.png -------------------------------------------------------------------------------- /res/Tiles/BadgeLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/BadgeLogo.scale-100.png -------------------------------------------------------------------------------- /res/Tiles/BadgeLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/BadgeLogo.scale-125.png -------------------------------------------------------------------------------- /res/Tiles/BadgeLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/BadgeLogo.scale-150.png -------------------------------------------------------------------------------- /res/Tiles/BadgeLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/BadgeLogo.scale-200.png -------------------------------------------------------------------------------- /res/Tiles/BadgeLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/BadgeLogo.scale-400.png -------------------------------------------------------------------------------- /res/Tiles/GalleryIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/GalleryIcon.ico -------------------------------------------------------------------------------- /res/Tiles/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/LargeTile.scale-100.png -------------------------------------------------------------------------------- /res/Tiles/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/LargeTile.scale-125.png -------------------------------------------------------------------------------- /res/Tiles/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/LargeTile.scale-150.png -------------------------------------------------------------------------------- /res/Tiles/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/LargeTile.scale-200.png -------------------------------------------------------------------------------- /res/Tiles/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/LargeTile.scale-400.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.altform-unplated_targetsize-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.altform-unplated_targetsize-20.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.altform-unplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.altform-unplated_targetsize-24.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.altform-unplated_targetsize-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.altform-unplated_targetsize-30.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.altform-unplated_targetsize-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.altform-unplated_targetsize-36.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.altform-unplated_targetsize-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.altform-unplated_targetsize-40.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.altform-unplated_targetsize-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.altform-unplated_targetsize-60.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.altform-unplated_targetsize-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.altform-unplated_targetsize-64.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.altform-unplated_targetsize-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.altform-unplated_targetsize-72.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.altform-unplated_targetsize-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.altform-unplated_targetsize-80.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.altform-unplated_targetsize-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.altform-unplated_targetsize-96.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.scale-100.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.scale-125.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.scale-150.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.scale-200.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.scale-400.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.targetsize-16.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.targetsize-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.targetsize-20.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.targetsize-24.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.targetsize-256.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.targetsize-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.targetsize-30.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.targetsize-32.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.targetsize-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.targetsize-36.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.targetsize-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.targetsize-40.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.targetsize-48.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.targetsize-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.targetsize-60.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.targetsize-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.targetsize-64.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.targetsize-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.targetsize-72.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.targetsize-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.targetsize-80.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile-sdk.targetsize-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile-sdk.targetsize-96.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile.scale-100.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile.scale-125.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile.scale-150.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile.scale-200.png -------------------------------------------------------------------------------- /res/Tiles/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/SmallTile.scale-400.png -------------------------------------------------------------------------------- /res/Tiles/StoreLogo-sdk.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/StoreLogo-sdk.scale-100.png -------------------------------------------------------------------------------- /res/Tiles/StoreLogo-sdk.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/StoreLogo-sdk.scale-125.png -------------------------------------------------------------------------------- /res/Tiles/StoreLogo-sdk.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/StoreLogo-sdk.scale-150.png -------------------------------------------------------------------------------- /res/Tiles/StoreLogo-sdk.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/StoreLogo-sdk.scale-200.png -------------------------------------------------------------------------------- /res/Tiles/StoreLogo-sdk.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/StoreLogo-sdk.scale-400.png -------------------------------------------------------------------------------- /res/Tiles/Tile_General.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/Tile_General.png -------------------------------------------------------------------------------- /res/Tiles/TitlebarLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/TitlebarLogo.png -------------------------------------------------------------------------------- /res/Tiles/WideLogo.scale-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/WideLogo.scale-80.png -------------------------------------------------------------------------------- /res/Tiles/WideTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/WideTile.scale-100.png -------------------------------------------------------------------------------- /res/Tiles/WideTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/WideTile.scale-125.png -------------------------------------------------------------------------------- /res/Tiles/WideTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/WideTile.scale-150.png -------------------------------------------------------------------------------- /res/Tiles/WideTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/WideTile.scale-200.png -------------------------------------------------------------------------------- /res/Tiles/WideTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/WideTile.scale-400.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryAppList.scale-100_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryAppList.scale-100_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryAppList.scale-125_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryAppList.scale-125_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryAppList.scale-150_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryAppList.scale-150_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryAppList.scale-200_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryAppList.scale-200_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryAppList.scale-400_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryAppList.scale-400_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-16_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-16_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-20_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-20_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-24_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-24_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-256_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-256_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-30_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-30_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-32_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-32_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-36_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-36_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-40_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-40_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-48_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-48_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-60_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-60_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-64_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-64_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-72_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-72_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-80_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-80_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-96_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryAppList.targetsize-96_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryBadgeLogo.scale-100_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryBadgeLogo.scale-100_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryBadgeLogo.scale-125_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryBadgeLogo.scale-125_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryBadgeLogo.scale-150_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryBadgeLogo.scale-150_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryBadgeLogo.scale-200_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryBadgeLogo.scale-200_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryBadgeLogo.scale-400_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryBadgeLogo.scale-400_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryLargeTile.scale-100_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryLargeTile.scale-100_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryLargeTile.scale-125_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryLargeTile.scale-125_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryLargeTile.scale-150_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryLargeTile.scale-150_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryLargeTile.scale-200_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryLargeTile.scale-200_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryLargeTile.scale-400_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryLargeTile.scale-400_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryMedTile.scale-100_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryMedTile.scale-100_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryMedTile.scale-125_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryMedTile.scale-125_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryMedTile.scale-150_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryMedTile.scale-150_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryMedTile.scale-200_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryMedTile.scale-200_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryMedTile.scale-400_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryMedTile.scale-400_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGallerySmallTile.scale-100_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGallerySmallTile.scale-100_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGallerySmallTile.scale-125_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGallerySmallTile.scale-125_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGallerySmallTile.scale-150_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGallerySmallTile.scale-150_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGallerySmallTile.scale-200_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGallerySmallTile.scale-200_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGallerySmallTile.scale-400_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGallerySmallTile.scale-400_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGallerySplashScreen.scale-100_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGallerySplashScreen.scale-100_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGallerySplashScreen.scale-125_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGallerySplashScreen.scale-125_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGallerySplashScreen.scale-150_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGallerySplashScreen.scale-150_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGallerySplashScreen.scale-200_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGallerySplashScreen.scale-200_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGallerySplashScreen.scale-400_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGallerySplashScreen.scale-400_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryStoreLogo.scale-100_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryStoreLogo.scale-100_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryStoreLogo.scale-125_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryStoreLogo.scale-125_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryStoreLogo.scale-150_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryStoreLogo.scale-150_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryStoreLogo.scale-200_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryStoreLogo.scale-200_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryStoreLogo.scale-400_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryStoreLogo.scale-400_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryWideTile.scale-100_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryWideTile.scale-100_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryWideTile.scale-125_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryWideTile.scale-125_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryWideTile.scale-150_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryWideTile.scale-150_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryWideTile.scale-200_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryWideTile.scale-200_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-black/XAMLControlsGalleryWideTile.scale-400_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-black/XAMLControlsGalleryWideTile.scale-400_contrast-black.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryAppList.scale-100_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryAppList.scale-100_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryAppList.scale-125_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryAppList.scale-125_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryAppList.scale-150_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryAppList.scale-150_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryAppList.scale-200_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryAppList.scale-200_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryAppList.scale-400_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryAppList.scale-400_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-16_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-16_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-20_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-20_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-24_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-24_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-256_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-256_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-30_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-30_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-32_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-32_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-36_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-36_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-40_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-40_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-48_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-48_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-60_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-60_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-64_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-64_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-72_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-72_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-80_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-80_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-96_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryAppList.targetsize-96_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryBadgeLogo.scale-100_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryBadgeLogo.scale-100_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryBadgeLogo.scale-125_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryBadgeLogo.scale-125_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryBadgeLogo.scale-150_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryBadgeLogo.scale-150_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryBadgeLogo.scale-200_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryBadgeLogo.scale-200_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryBadgeLogo.scale-400_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryBadgeLogo.scale-400_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryLargeTile.scale-100_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryLargeTile.scale-100_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryLargeTile.scale-125_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryLargeTile.scale-125_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryLargeTile.scale-150_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryLargeTile.scale-150_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryLargeTile.scale-200_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryLargeTile.scale-200_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryLargeTile.scale-400_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryLargeTile.scale-400_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryMedTile.scale-100_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryMedTile.scale-100_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryMedTile.scale-125_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryMedTile.scale-125_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryMedTile.scale-150_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryMedTile.scale-150_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryMedTile.scale-200_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryMedTile.scale-200_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryMedTile.scale-400_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryMedTile.scale-400_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGallerySmallTile.scale-100_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGallerySmallTile.scale-100_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGallerySmallTile.scale-125_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGallerySmallTile.scale-125_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGallerySmallTile.scale-150_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGallerySmallTile.scale-150_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGallerySmallTile.scale-200_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGallerySmallTile.scale-200_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGallerySmallTile.scale-400_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGallerySmallTile.scale-400_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGallerySplashScreen.scale-100_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGallerySplashScreen.scale-100_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGallerySplashScreen.scale-125_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGallerySplashScreen.scale-125_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryStoreLogo.scale-100_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryStoreLogo.scale-100_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryStoreLogo.scale-125_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryStoreLogo.scale-125_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryStoreLogo.scale-150_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryStoreLogo.scale-150_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryStoreLogo.scale-200_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryStoreLogo.scale-200_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryStoreLogo.scale-400_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryStoreLogo.scale-400_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryWideTile.scale-100_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryWideTile.scale-100_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryWideTile.scale-125_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryWideTile.scale-125_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryWideTile.scale-150_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryWideTile.scale-150_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryWideTile.scale-200_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryWideTile.scale-200_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/contrast-white/XAMLControlsGalleryWideTile.scale-400_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/contrast-white/XAMLControlsGalleryWideTile.scale-400_contrast-white.png -------------------------------------------------------------------------------- /res/Tiles/splash-sdk.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/splash-sdk.scale-100.png -------------------------------------------------------------------------------- /res/Tiles/splash-sdk.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/splash-sdk.scale-125.png -------------------------------------------------------------------------------- /res/Tiles/splash-sdk.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/splash-sdk.scale-150.png -------------------------------------------------------------------------------- /res/Tiles/splash-sdk.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/splash-sdk.scale-200.png -------------------------------------------------------------------------------- /res/Tiles/splash-sdk.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/splash-sdk.scale-400.png -------------------------------------------------------------------------------- /res/Tiles/squaretile-sdk.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/squaretile-sdk.scale-100.png -------------------------------------------------------------------------------- /res/Tiles/squaretile-sdk.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/squaretile-sdk.scale-125.png -------------------------------------------------------------------------------- /res/Tiles/squaretile-sdk.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/squaretile-sdk.scale-150.png -------------------------------------------------------------------------------- /res/Tiles/squaretile-sdk.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/squaretile-sdk.scale-200.png -------------------------------------------------------------------------------- /res/Tiles/squaretile-sdk.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/squaretile-sdk.scale-400.png -------------------------------------------------------------------------------- /res/Tiles/widelogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/widelogo.scale-100.png -------------------------------------------------------------------------------- /res/Tiles/widelogo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/widelogo.scale-140.png -------------------------------------------------------------------------------- /res/Tiles/widelogo.scale-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Tiles/widelogo.scale-180.png -------------------------------------------------------------------------------- /res/Typography.dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Typography.dark.png -------------------------------------------------------------------------------- /res/Typography.light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/Typography.light.png -------------------------------------------------------------------------------- /res/WideLogo.scale-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/WideLogo.scale-80.png -------------------------------------------------------------------------------- /res/badgelogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/badgelogo.scale-100.png -------------------------------------------------------------------------------- /res/badgelogo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/badgelogo.scale-140.png -------------------------------------------------------------------------------- /res/badgelogo.scale-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/badgelogo.scale-180.png -------------------------------------------------------------------------------- /res/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/blank.png -------------------------------------------------------------------------------- /res/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/folder.png -------------------------------------------------------------------------------- /res/ninegrid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/ninegrid.gif -------------------------------------------------------------------------------- /res/widelogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/widelogo.scale-100.png -------------------------------------------------------------------------------- /res/widelogo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/widelogo.scale-140.png -------------------------------------------------------------------------------- /res/widelogo.scale-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mowangshuying/FluentUI/e9e2d4974b7fb56fdbf8fa2bd8d7f274c44e8e13/res/widelogo.scale-180.png --------------------------------------------------------------------------------