├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── stale.yml │ └── static.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── FluentFlyout.sln ├── FluentFlyoutMSIX ├── FluentFlyoutMSIX.wapproj ├── Images │ ├── FluentFlyout.altform-lightunplated_targetsize-16.png │ ├── FluentFlyout.altform-lightunplated_targetsize-24.png │ ├── FluentFlyout.altform-lightunplated_targetsize-256.png │ ├── FluentFlyout.altform-lightunplated_targetsize-32.png │ ├── FluentFlyout.altform-lightunplated_targetsize-48.png │ ├── FluentFlyout.altform-unplated_targetsize-16.png │ ├── FluentFlyout.altform-unplated_targetsize-24.png │ ├── FluentFlyout.altform-unplated_targetsize-256.png │ ├── FluentFlyout.altform-unplated_targetsize-32.png │ ├── FluentFlyout.altform-unplated_targetsize-48.png │ ├── FluentFlyout.scale-100.png │ ├── FluentFlyout.scale-125.png │ ├── FluentFlyout.scale-150.png │ ├── FluentFlyout.scale-200.png │ ├── FluentFlyout.scale-400.png │ ├── FluentFlyout.targetsize-16.png │ ├── FluentFlyout.targetsize-24.png │ ├── FluentFlyout.targetsize-256.png │ ├── FluentFlyout.targetsize-32.png │ ├── FluentFlyout.targetsize-48.png │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── LockScreenLogo.scale-200.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.backup.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ └── Wide310x150Logo.scale-400.png └── Package.appxmanifest ├── FluentFlyoutWPF ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Classes │ ├── FullscreenDetector.cs │ ├── LicenseManager.cs │ ├── LocalizationManager.cs │ ├── Settings │ │ └── SettingsManager.cs │ ├── ThemeManager.cs │ ├── Utils │ │ ├── MediaPlayerData.cs │ │ └── StringWidth.cs │ ├── WindowBlurHelper.cs │ └── WindowHelper.cs ├── FluentFlyout.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Models │ └── LanguageOption.cs ├── Resources │ ├── FluentFlyout2.ico │ ├── FluentFlyoutDemo3.1.png │ ├── FluentFlyoutDemo4.1.png │ ├── FluentFlyoutDemo5.1.png │ ├── FluentFlyoutDemo9.1.png │ ├── Localization │ │ ├── Dictionary-ar.xaml │ │ ├── Dictionary-cs.xaml │ │ ├── Dictionary-de.xaml │ │ ├── Dictionary-el.xaml │ │ ├── Dictionary-en-US.xaml │ │ ├── Dictionary-es.xaml │ │ ├── Dictionary-fi.xaml │ │ ├── Dictionary-fr.xaml │ │ ├── Dictionary-he.xaml │ │ ├── Dictionary-hi.xaml │ │ ├── Dictionary-id.xaml │ │ ├── Dictionary-ja.xaml │ │ ├── Dictionary-ko.xaml │ │ ├── Dictionary-nl.xaml │ │ ├── Dictionary-pt-BR.xaml │ │ ├── Dictionary-ru.xaml │ │ ├── Dictionary-tr.xaml │ │ ├── Dictionary-vi.xaml │ │ ├── Dictionary-zh-CN.xaml │ │ └── Dictionary-zh-TW.xaml │ ├── Styles │ │ └── CustomSlider.xaml │ └── TrayIcons │ │ ├── FluentFlyoutBlack.png │ │ └── FluentFlyoutWhite.png ├── SettingsWindow.xaml ├── SettingsWindow.xaml.cs ├── ViewModels │ └── UserSettings.cs └── Windows │ ├── LockWindow.xaml │ ├── LockWindow.xaml.cs │ ├── NextUpWindow.xaml │ ├── NextUpWindow.xaml.cs │ ├── TaskbarWindow.xaml │ └── TaskbarWindow.xaml.cs ├── LICENSE ├── PRIVACY-POLICY.md ├── README.md ├── README.nl.md ├── README.zh.md └── Website ├── images └── FluentFlyout.altform-lightunplated_targetsize-32.ico ├── index.html ├── input.css ├── output.css ├── script.js └── styles.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /FluentFlyout.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyout.sln -------------------------------------------------------------------------------- /FluentFlyoutMSIX/FluentFlyoutMSIX.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/FluentFlyoutMSIX.wapproj -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/FluentFlyout.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/FluentFlyout.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/FluentFlyout.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/FluentFlyout.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/FluentFlyout.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/FluentFlyout.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/FluentFlyout.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/FluentFlyout.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/FluentFlyout.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/FluentFlyout.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/FluentFlyout.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/FluentFlyout.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/FluentFlyout.altform-unplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/FluentFlyout.altform-unplated_targetsize-24.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/FluentFlyout.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/FluentFlyout.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/FluentFlyout.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/FluentFlyout.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/FluentFlyout.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/FluentFlyout.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/FluentFlyout.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/FluentFlyout.scale-100.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/FluentFlyout.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/FluentFlyout.scale-125.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/FluentFlyout.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/FluentFlyout.scale-150.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/FluentFlyout.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/FluentFlyout.scale-200.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/FluentFlyout.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/FluentFlyout.scale-400.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/FluentFlyout.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/FluentFlyout.targetsize-16.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/FluentFlyout.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/FluentFlyout.targetsize-24.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/FluentFlyout.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/FluentFlyout.targetsize-256.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/FluentFlyout.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/FluentFlyout.targetsize-32.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/FluentFlyout.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/FluentFlyout.targetsize-48.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/LargeTile.scale-100.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/LargeTile.scale-125.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/LargeTile.scale-150.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/LargeTile.scale-200.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/LargeTile.scale-400.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/SmallTile.scale-100.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/SmallTile.scale-125.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/SmallTile.scale-150.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/SmallTile.scale-200.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/SmallTile.scale-400.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/StoreLogo.backup.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Images/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Images/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /FluentFlyoutMSIX/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutMSIX/Package.appxmanifest -------------------------------------------------------------------------------- /FluentFlyoutWPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/App.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/App.xaml.cs -------------------------------------------------------------------------------- /FluentFlyoutWPF/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/AssemblyInfo.cs -------------------------------------------------------------------------------- /FluentFlyoutWPF/Classes/FullscreenDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Classes/FullscreenDetector.cs -------------------------------------------------------------------------------- /FluentFlyoutWPF/Classes/LicenseManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Classes/LicenseManager.cs -------------------------------------------------------------------------------- /FluentFlyoutWPF/Classes/LocalizationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Classes/LocalizationManager.cs -------------------------------------------------------------------------------- /FluentFlyoutWPF/Classes/Settings/SettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Classes/Settings/SettingsManager.cs -------------------------------------------------------------------------------- /FluentFlyoutWPF/Classes/ThemeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Classes/ThemeManager.cs -------------------------------------------------------------------------------- /FluentFlyoutWPF/Classes/Utils/MediaPlayerData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Classes/Utils/MediaPlayerData.cs -------------------------------------------------------------------------------- /FluentFlyoutWPF/Classes/Utils/StringWidth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Classes/Utils/StringWidth.cs -------------------------------------------------------------------------------- /FluentFlyoutWPF/Classes/WindowBlurHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Classes/WindowBlurHelper.cs -------------------------------------------------------------------------------- /FluentFlyoutWPF/Classes/WindowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Classes/WindowHelper.cs -------------------------------------------------------------------------------- /FluentFlyoutWPF/FluentFlyout.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/FluentFlyout.csproj -------------------------------------------------------------------------------- /FluentFlyoutWPF/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/MainWindow.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/MainWindow.xaml.cs -------------------------------------------------------------------------------- /FluentFlyoutWPF/Models/LanguageOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Models/LanguageOption.cs -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/FluentFlyout2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/FluentFlyout2.ico -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/FluentFlyoutDemo3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/FluentFlyoutDemo3.1.png -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/FluentFlyoutDemo4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/FluentFlyoutDemo4.1.png -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/FluentFlyoutDemo5.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/FluentFlyoutDemo5.1.png -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/FluentFlyoutDemo9.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/FluentFlyoutDemo9.1.png -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/Localization/Dictionary-ar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/Localization/Dictionary-ar.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/Localization/Dictionary-cs.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/Localization/Dictionary-cs.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/Localization/Dictionary-de.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/Localization/Dictionary-de.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/Localization/Dictionary-el.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/Localization/Dictionary-el.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/Localization/Dictionary-en-US.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/Localization/Dictionary-en-US.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/Localization/Dictionary-es.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/Localization/Dictionary-es.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/Localization/Dictionary-fi.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/Localization/Dictionary-fi.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/Localization/Dictionary-fr.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/Localization/Dictionary-fr.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/Localization/Dictionary-he.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/Localization/Dictionary-he.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/Localization/Dictionary-hi.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/Localization/Dictionary-hi.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/Localization/Dictionary-id.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/Localization/Dictionary-id.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/Localization/Dictionary-ja.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/Localization/Dictionary-ja.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/Localization/Dictionary-ko.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/Localization/Dictionary-ko.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/Localization/Dictionary-nl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/Localization/Dictionary-nl.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/Localization/Dictionary-pt-BR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/Localization/Dictionary-pt-BR.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/Localization/Dictionary-ru.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/Localization/Dictionary-ru.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/Localization/Dictionary-tr.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/Localization/Dictionary-tr.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/Localization/Dictionary-vi.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/Localization/Dictionary-vi.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/Localization/Dictionary-zh-CN.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/Localization/Dictionary-zh-CN.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/Localization/Dictionary-zh-TW.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/Localization/Dictionary-zh-TW.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/Styles/CustomSlider.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/Styles/CustomSlider.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/TrayIcons/FluentFlyoutBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/TrayIcons/FluentFlyoutBlack.png -------------------------------------------------------------------------------- /FluentFlyoutWPF/Resources/TrayIcons/FluentFlyoutWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Resources/TrayIcons/FluentFlyoutWhite.png -------------------------------------------------------------------------------- /FluentFlyoutWPF/SettingsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/SettingsWindow.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/SettingsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/SettingsWindow.xaml.cs -------------------------------------------------------------------------------- /FluentFlyoutWPF/ViewModels/UserSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/ViewModels/UserSettings.cs -------------------------------------------------------------------------------- /FluentFlyoutWPF/Windows/LockWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Windows/LockWindow.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Windows/LockWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Windows/LockWindow.xaml.cs -------------------------------------------------------------------------------- /FluentFlyoutWPF/Windows/NextUpWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Windows/NextUpWindow.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Windows/NextUpWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Windows/NextUpWindow.xaml.cs -------------------------------------------------------------------------------- /FluentFlyoutWPF/Windows/TaskbarWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Windows/TaskbarWindow.xaml -------------------------------------------------------------------------------- /FluentFlyoutWPF/Windows/TaskbarWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/FluentFlyoutWPF/Windows/TaskbarWindow.xaml.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY-POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/PRIVACY-POLICY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/README.md -------------------------------------------------------------------------------- /README.nl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/README.nl.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/README.zh.md -------------------------------------------------------------------------------- /Website/images/FluentFlyout.altform-lightunplated_targetsize-32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/Website/images/FluentFlyout.altform-lightunplated_targetsize-32.ico -------------------------------------------------------------------------------- /Website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/Website/index.html -------------------------------------------------------------------------------- /Website/input.css: -------------------------------------------------------------------------------- 1 | @import "tailwindcss"; 2 | -------------------------------------------------------------------------------- /Website/output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/Website/output.css -------------------------------------------------------------------------------- /Website/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/Website/script.js -------------------------------------------------------------------------------- /Website/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchihugo/FluentFlyout/HEAD/Website/styles.css --------------------------------------------------------------------------------