在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → Flow.Launcher:Windows的快速文件搜索和应用启动器,配有社区制作的插件

Flow.Launcher:Windows的快速文件搜索和应用启动器,配有社区制作的插件

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:4.22M
  • 下载次数:0
  • 浏览次数:5
  • 发布时间:2024-05-05
  • 实例类别:一般编程问题
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2
 相关标签:

实例介绍

【实例简介】

致力于使您的工作流更加流畅。搜索来自应用程序、文件、书签、YouTube、Twitter等的所有内容。

预览面板

  • 使用F1键打开/隐藏预览面板。
  • 媒体文件将显示为大图像,否则将显示大图标和完整路径。
  • 通过设置(始终预览)永久打开预览。
  • 如果预览区域太窄,使用快捷键(Ctrl Plus、Minus / Ctrl ],[)快速调整Flow搜索窗口的宽度和高度。
  • 此功能目前处于早期阶段。

Everything插件合并到资源管理器中

  • 轻松切换Between Everything和Windows Search,以充分利用两个搜索引擎(记得删除现有的Everything插件)。
  • 使用可用于Everything和资源管理器插件的功能

搜索窗口中显示日期和时间

  • 触发搜索窗口时显示日期和时间。

【实例截图】

from clipboard


from clipboard


from clipboard

from clipboard

【核心代码】
文件清单
└── Flow.Launcher-a9b41879697681111133edcd6377f28d4c476796
    ├── appveyor.yml
    ├── Artworks
    │   ├── app_error.png
    │   ├── app.ico
    │   ├── app_missing_img.png
    │   ├── app.png
    │   ├── Default Icons
    │   │   ├── app_missing_img_01.png
    │   │   ├── app_missing_img_01.svg
    │   │   ├── app_missing_img_02.png
    │   │   ├── app_missing_img_02.svg
    │   │   ├── app_missing_img_03.png
    │   │   ├── app_missing_img_03.svg
    │   │   ├── app_missing_img_buttons.png
    │   │   ├── app_missing_img_buttons.svg
    │   │   ├── app_missing_img_fluent.png
    │   │   ├── app_missing_img_fluent.svg
    │   │   ├── app_missing_img_huge.png
    │   │   ├── app_missing_img_huge.svg
    │   │   ├── app_missing_img_lightblue_buttons.png
    │   │   ├── app_missing_img_lightblue_buttons.svg
    │   │   ├── app_missing_img_lightblue.png
    │   │   ├── app_missing_img_lightblue.svg
    │   │   ├── app_missing_img_minimal_buttons.png
    │   │   ├── app_missing_img_minimal_buttons.svg
    │   │   ├── app_missing_img_minimal.png
    │   │   ├── app_missing_img_minimal.svg
    │   │   └── app_missing_img.png
    │   ├── Logo
    │   │   ├── app_error.png
    │   │   ├── logo128.png
    │   │   ├── logo16.png
    │   │   ├── logo256.png
    │   │   ├── logo32.png
    │   │   ├── logo48.png
    │   │   ├── logo512.png
    │   │   ├── logo64.png
    │   │   ├── logo.ico
    │   │   ├── logo.png
    │   │   ├── logo.svg
    │   │   └── resources
    │   │       ├── flow-header-landscape.png
    │   │       ├── flow-header-landscape-transparent.png
    │   │       ├── flow-header-square.png
    │   │       ├── flow-header-square-transparent.png
    │   │       ├── flow-logo.ai
    │   │       └── preview.pdf
    │   └── mainsearch.png
    ├── attribution.md
    ├── azure-pipelines.yml
    ├── crowdin.yml
    ├── Directory.Build.props
    ├── Directory.Build.targets
    ├── Flow.Launcher
    │   ├── ActionKeywords.xaml
    │   ├── ActionKeywords.xaml.cs
    │   ├── app.manifest
    │   ├── app.png
    │   ├── App.xaml
    │   ├── App.xaml.cs
    │   ├── Converters
    │   │   ├── BoolToIMEConversionModeConverter.cs
    │   │   ├── BoolToVisibilityConverter.cs
    │   │   ├── BorderClipConverter.cs
    │   │   ├── DateTimeFormatToNowConverter.cs
    │   │   ├── DiameterToCenterPointConverter.cs
    │   │   ├── HighlightTextConverter.cs
    │   │   ├── IconRadiusConverter.cs
    │   │   ├── OpenResultHotkeyVisibilityConverter.cs
    │   │   ├── OrdinalConverter.cs
    │   │   ├── QuerySuggestionBoxConverter.cs
    │   │   ├── StringToKeyBindingConverter.cs
    │   │   └── TextConverter.cs
    │   ├── CustomQueryHotkeySetting.xaml
    │   ├── CustomQueryHotkeySetting.xaml.cs
    │   ├── CustomShortcutSetting.xaml
    │   ├── CustomShortcutSetting.xaml.cs
    │   ├── Flow.Launcher.csproj
    │   ├── FodyWeavers.xml
    │   ├── Helper
    │   │   ├── AutoStartup.cs
    │   │   ├── DataWebRequestFactory.cs
    │   │   ├── DWMDropShadow.cs
    │   │   ├── ErrorReporting.cs
    │   │   ├── HotKeyMapper.cs
    │   │   ├── SingleInstance.cs
    │   │   ├── SingletonWindowOpener.cs
    │   │   ├── SyntaxSugars.cs
    │   │   ├── WallpaperPathRetrieval.cs
    │   │   └── WindowsInteropHelper.cs
    │   ├── HotkeyControl.xaml
    │   ├── HotkeyControl.xaml.cs
    │   ├── Images
    │   │   ├── app_error.png
    │   │   ├── app.ico
    │   │   ├── app_missing_img.png
    │   │   ├── app.png
    │   │   ├── Browser.png
    │   │   ├── calculator.png
    │   │   ├── cancel.png
    │   │   ├── close.png
    │   │   ├── cmd.png
    │   │   ├── color.png
    │   │   ├── copy.png
    │   │   ├── down.png
    │   │   ├── EXE.png
    │   │   ├── file.png
    │   │   ├── find.png
    │   │   ├── folder.png
    │   │   ├── gamemode.ico
    │   │   ├── history.png
    │   │   ├── illustration_01.png
    │   │   ├── illustration_02.png
    │   │   ├── image.png
    │   │   ├── Link.png
    │   │   ├── loading.png
    │   │   ├── lock.png
    │   │   ├── logoff.png
    │   │   ├── mainsearch.svg
    │   │   ├── New Message.png
    │   │   ├── ok.png
    │   │   ├── open.png
    │   │   ├── page_img01.png
    │   │   ├── plugin.png
    │   │   ├── recyclebin.png
    │   │   ├── restart.png
    │   │   ├── search.png
    │   │   ├── settings.png
    │   │   ├── shutdown.png
    │   │   ├── sleep.png
    │   │   ├── update.png
    │   │   ├── up.png
    │   │   ├── warning.png
    │   │   └── wizard.png
    │   ├── Languages
    │   │   ├── ar.xaml
    │   │   ├── cs.xaml
    │   │   ├── da.xaml
    │   │   ├── de.xaml
    │   │   ├── en.xaml
    │   │   ├── es-419.xaml
    │   │   ├── es.xaml
    │   │   ├── fr.xaml
    │   │   ├── it.xaml
    │   │   ├── ja.xaml
    │   │   ├── ko.xaml
    │   │   ├── nb-NO.xaml
    │   │   ├── nb.xaml
    │   │   ├── nl.xaml
    │   │   ├── pl.xaml
    │   │   ├── pt-br.xaml
    │   │   ├── pt-pt.xaml
    │   │   ├── ru.xaml
    │   │   ├── sk.xaml
    │   │   ├── sr.xaml
    │   │   ├── tr.xaml
    │   │   ├── uk-UA.xaml
    │   │   ├── zh-cn.xaml
    │   │   └── zh-tw.xaml
    │   ├── MainWindow.xaml
    │   ├── MainWindow.xaml.cs
    │   ├── Msg.xaml
    │   ├── Msg.xaml.cs
    │   ├── Notification.cs
    │   ├── PriorityChangeWindow.xaml
    │   ├── PriorityChangeWindow.xaml.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── PublishProfiles
    │   │   │   └── Net7.0-SelfContained.pubxml
    │   │   ├── Resources.ar-SA.resx
    │   │   ├── Resources.cs-CZ.resx
    │   │   ├── Resources.da-DK.resx
    │   │   ├── Resources.de-DE.resx
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.es-419.resx
    │   │   ├── Resources.es-EM.resx
    │   │   ├── Resources.fr-FR.resx
    │   │   ├── Resources.it-IT.resx
    │   │   ├── Resources.ja-JP.resx
    │   │   ├── Resources.ko-KR.resx
    │   │   ├── Resources.nb-NO.resx
    │   │   ├── Resources.nl-NL.resx
    │   │   ├── Resources.pl-PL.resx
    │   │   ├── Resources.pt-BR.resx
    │   │   ├── Resources.pt-PT.resx
    │   │   ├── Resources.resx
    │   │   ├── Resources.ru-RU.resx
    │   │   ├── Resources.sk-SK.resx
    │   │   ├── Resources.sr-CS.resx
    │   │   ├── Resources.tr-TR.resx
    │   │   ├── Resources.uk-UA.resx
    │   │   ├── Resources.zh-cn.resx
    │   │   ├── Resources.zh-TW.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── PublicAPIInstance.cs
    │   ├── ReportWindow.xaml
    │   ├── ReportWindow.xaml.cs
    │   ├── Resources
    │   │   ├── app.ico
    │   │   ├── CustomControlTemplate.xaml
    │   │   ├── Dark.xaml
    │   │   ├── Light.xaml
    │   │   ├── open.wav
    │   │   ├── Pages
    │   │   │   ├── WelcomePage1.xaml
    │   │   │   ├── WelcomePage1.xaml.cs
    │   │   │   ├── WelcomePage2.xaml
    │   │   │   ├── WelcomePage2.xaml.cs
    │   │   │   ├── WelcomePage3.xaml
    │   │   │   ├── WelcomePage3.xaml.cs
    │   │   │   ├── WelcomePage4.xaml
    │   │   │   ├── WelcomePage4.xaml.cs
    │   │   │   ├── WelcomePage5.xaml
    │   │   │   └── WelcomePage5.xaml.cs
    │   │   └── Segoe Fluent Icons.ttf
    │   ├── ResultListBox.xaml
    │   ├── ResultListBox.xaml.cs
    │   ├── SelectBrowserWindow.xaml
    │   ├── SelectBrowserWindow.xaml.cs
    │   ├── SelectFileManagerWindow.xaml
    │   ├── SelectFileManagerWindow.xaml.cs
    │   ├── Settings.cs
    │   ├── SettingWindow.xaml
    │   ├── SettingWindow.xaml.cs
    │   ├── Storage
    │   │   ├── HistoryItem.cs
    │   │   ├── QueryHistory.cs
    │   │   ├── TopMostRecord.cs
    │   │   └── UserSelectedRecord.cs
    │   ├── Themes
    │   │   ├── Base.xaml
    │   │   ├── BlurBlack Darker.xaml
    │   │   ├── BlurBlack.xaml
    │   │   ├── BlurWhite.xaml
    │   │   ├── Bullet Light.xaml
    │   │   ├── Circle Light.xaml
    │   │   ├── Circle System.xaml
    │   │   ├── Cyan Dark.xaml
    │   │   ├── Darker Glass.xaml
    │   │   ├── Darker.xaml
    │   │   ├── Discord Dark.xaml
    │   │   ├── Dracula.xaml
    │   │   ├── Gray.xaml
    │   │   ├── League.xaml
    │   │   ├── Midnight.xaml
    │   │   ├── Nord Darker.xaml
    │   │   ├── Pink.xaml
    │   │   ├── SlimLight.xaml
    │   │   ├── Sublime.xaml
    │   │   ├── ThemeBuilder
    │   │   │   ├── Template.xaml
    │   │   │   └── ThemeConvertor.py
    │   │   ├── Ubuntu.xaml
    │   │   ├── Win10Light.xaml
    │   │   ├── Win11Dark.xaml
    │   │   ├── Win11Light.xaml
    │   │   └── Win11System.xaml
    │   ├── ViewModel
    │   │   ├── MainViewModel.cs
    │   │   ├── PluginStoreItemViewModel.cs
    │   │   ├── PluginViewModel.cs
    │   │   ├── RelayCommand.cs
    │   │   ├── ResultsForUpdate.cs
    │   │   ├── ResultsViewModel.cs
    │   │   ├── ResultViewModel.cs
    │   │   └── SettingWindowViewModel.cs
    │   ├── WelcomeWindow.xaml
    │   └── WelcomeWindow.xaml.cs
    ├── Flow.Launcher.Core
    │   ├── Configuration
    │   │   ├── IPortable.cs
    │   │   └── Portable.cs
    │   ├── ExternalPlugins
    │   │   ├── CommunityPluginSource.cs
    │   │   ├── CommunityPluginStore.cs
    │   │   ├── Environments
    │   │   │   ├── AbstractPluginEnvironment.cs
    │   │   │   ├── JavaScriptEnvironment.cs
    │   │   │   ├── JavaScriptV2Environment.cs
    │   │   │   ├── PythonEnvironment.cs
    │   │   │   ├── PythonV2Environment.cs
    │   │   │   ├── TypeScriptEnvironment.cs
    │   │   │   └── TypeScriptV2Environment.cs
    │   │   ├── FlowPluginException.cs
    │   │   ├── PluginsManifest.cs
    │   │   └── UserPlugin.cs
    │   ├── Flow.Launcher.Core.csproj
    │   ├── FodyWeavers.xml
    │   ├── Plugin
    │   │   ├── ExecutablePlugin.cs
    │   │   ├── ExecutablePluginV2.cs
    │   │   ├── JsonPRCModel.cs
    │   │   ├── JsonRPCConfigurationModel.cs
    │   │   ├── JsonRPCPluginBase.cs
    │   │   ├── JsonRPCPlugin.cs
    │   │   ├── JsonRPCPluginSettings.cs
    │   │   ├── JsonRPCPluginV2.cs
    │   │   ├── JsonRPCV2Models
    │   │   │   ├── JsonRPCExecuteResponse.cs
    │   │   │   ├── JsonRPCPublicAPI.cs
    │   │   │   └── JsonRPCQueryRequest.cs
    │   │   ├── NodePlugin.cs
    │   │   ├── NodePluginV2.cs
    │   │   ├── PluginAssemblyLoader.cs
    │   │   ├── PluginConfig.cs
    │   │   ├── PluginManager.cs
    │   │   ├── PluginsLoader.cs
    │   │   ├── ProcessStreamPluginV2.cs
    │   │   ├── PythonPlugin.cs
    │   │   ├── PythonPluginV2.cs
    │   │   ├── QueryBuilder.cs
    │   │   └── README.md
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── README.md
    │   ├── Resource
    │   │   ├── AvailableLanguages.cs
    │   │   ├── FontHelper.cs
    │   │   ├── Internationalization.cs
    │   │   ├── InternationalizationManager.cs
    │   │   ├── JsonObjectConverter.cs
    │   │   ├── Language.cs
    │   │   ├── LocalizationConverter.cs
    │   │   ├── LocalizedDescriptionAttribute.cs
    │   │   ├── Theme.cs
    │   │   ├── ThemeManager.cs
    │   │   └── TranslationConverter.cs
    │   └── Updater.cs
    ├── Flow.Launcher.Infrastructure
    │   ├── Constant.cs
    │   ├── Exception
    │   │   └── ExceptionFormatter.cs
    │   ├── FileExplorerHelper.cs
    │   ├── Flow.Launcher.Infrastructure.csproj
    │   ├── FodyWeavers.xml
    │   ├── Helper.cs
    │   ├── Hotkey
    │   │   ├── GlobalHotkey.cs
    │   │   ├── HotkeyModel.cs
    │   │   ├── InterceptKeys.cs
    │   │   └── KeyEvent.cs
    │   ├── Http
    │   │   └── Http.cs
    │   ├── Image
    │   │   ├── ImageCache.cs
    │   │   ├── ImageHashGenerator.cs
    │   │   ├── ImageLoader.cs
    │   │   └── ThumbnailReader.cs
    │   ├── KeyConstant.cs
    │   ├── Logger
    │   │   └── Log.cs
    │   ├── PinyinAlphabet.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── Stopwatch.cs
    │   ├── Storage
    │   │   ├── BinaryStorage.cs
    │   │   ├── FlowLauncherJsonStorage.cs
    │   │   ├── JsonStorage.cs
    │   │   └── PluginJsonStorage.cs
    │   ├── StringMatcher.cs
    │   ├── UI
    │   │   └── EnumBindingSource.cs
    │   └── UserSettings
    │       ├── CustomBrowserViewModel.cs
    │       ├── CustomExplorerViewModel.cs
    │       ├── CustomShortcutModel.cs
    │       ├── DataLocation.cs
    │       ├── HttpProxy.cs
    │       ├── PluginHotkey.cs
    │       ├── PluginSettings.cs
    │       └── Settings.cs
    ├── Flow.Launcher.Plugin
    │   ├── ActionContext.cs
    │   ├── AllowedLanguage.cs
    │   ├── BaseModel.cs
    │   ├── EventHandler.cs
    │   ├── Features.cs
    │   ├── Flow.Launcher.Plugin.csproj
    │   ├── FodyWeavers.xml
    │   ├── GlyphInfo.cs
    │   ├── Interfaces
    │   │   ├── IAsyncPlugin.cs
    │   │   ├── IAsyncReloadable.cs
    │   │   ├── IContextMenu.cs
    │   │   ├── IPlugin.cs
    │   │   ├── IPluginI18n.cs
    │   │   ├── IPublicAPI.cs
    │   │   ├── IReloadable.cs
    │   │   ├── IResultUpdated.cs
    │   │   ├── ISavable.cs
    │   │   └── ISettingProvider.cs
    │   ├── PluginInitContext.cs
    │   ├── PluginMetadata.cs
    │   ├── PluginPair.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── Query.cs
    │   ├── README.md
    │   ├── Result.cs
    │   ├── SharedCommands
    │   │   ├── FilesFolders.cs
    │   │   ├── SearchWeb.cs
    │   │   └── ShellCommand.cs
    │   └── SharedModels
    │       └── MatchResult.cs
    ├── Flow.Launcher.sln
    ├── Flow.Launcher.sln.DotSettings
    ├── Flow.Launcher.Test
    │   ├── FilesFoldersTest.cs
    │   ├── Flow.Launcher.Test.csproj
    │   ├── FuzzyMatcherTest.cs
    │   ├── HttpTest.cs
    │   ├── PluginLoadTest.cs
    │   ├── Plugins
    │   │   ├── ExplorerTest.cs
    │   │   ├── JsonRPCPluginTest.cs
    │   │   └── UrlPluginTest.cs
    │   └── QueryBuilderTest.cs
    ├── global.json
    ├── LICENSE
    ├── Plugins
    │   ├── Flow.Launcher.Plugin.BrowserBookmark
    │   │   ├── ChromeBookmarkLoader.cs
    │   │   ├── ChromiumBookmarkLoader.cs
    │   │   ├── Commands
    │   │   │   └── BookmarkLoader.cs
    │   │   ├── CustomChromiumBookmarkLoader.cs
    │   │   ├── CustomFirefoxBookmarkLoader.cs
    │   │   ├── EdgeBookmarkLoader.cs
    │   │   ├── FirefoxBookmarkLoader.cs
    │   │   ├── Flow.Launcher.Plugin.BrowserBookmark.csproj
    │   │   ├── IBookmarkLoader.cs
    │   │   ├── Images
    │   │   │   ├── bookmark.png
    │   │   │   └── copylink.png
    │   │   ├── Languages
    │   │   │   ├── ar.xaml
    │   │   │   ├── cs.xaml
    │   │   │   ├── da.xaml
    │   │   │   ├── de.xaml
    │   │   │   ├── en.xaml
    │   │   │   ├── es-419.xaml
    │   │   │   ├── es.xaml
    │   │   │   ├── fr.xaml
    │   │   │   ├── it.xaml
    │   │   │   ├── ja.xaml
    │   │   │   ├── ko.xaml
    │   │   │   ├── nb.xaml
    │   │   │   ├── nl.xaml
    │   │   │   ├── pl.xaml
    │   │   │   ├── pt-br.xaml
    │   │   │   ├── pt-pt.xaml
    │   │   │   ├── ru.xaml
    │   │   │   ├── sk.xaml
    │   │   │   ├── sr.xaml
    │   │   │   ├── tr.xaml
    │   │   │   ├── uk-UA.xaml
    │   │   │   ├── zh-cn.xaml
    │   │   │   └── zh-tw.xaml
    │   │   ├── Main.cs
    │   │   ├── Models
    │   │   │   ├── Bookmark.cs
    │   │   │   ├── CustomBrowser.cs
    │   │   │   └── Settings.cs
    │   │   ├── plugin.json
    │   │   └── Views
    │   │       ├── CustomBrowserSetting.xaml
    │   │       ├── CustomBrowserSetting.xaml.cs
    │   │       ├── SettingsControl.xaml
    │   │       └── SettingsControl.xaml.cs
    │   ├── Flow.Launcher.Plugin.Calculator
    │   │   ├── DecimalSeparator.cs
    │   │   ├── Flow.Launcher.Plugin.Calculator.csproj
    │   │   ├── Images
    │   │   │   └── calculator.png
    │   │   ├── Languages
    │   │   │   ├── ar.xaml
    │   │   │   ├── cs.xaml
    │   │   │   ├── da.xaml
    │   │   │   ├── de.xaml
    │   │   │   ├── en.xaml
    │   │   │   ├── es-419.xaml
    │   │   │   ├── es.xaml
    │   │   │   ├── fr.xaml
    │   │   │   ├── it.xaml
    │   │   │   ├── ja.xaml
    │   │   │   ├── ko.xaml
    │   │   │   ├── nb.xaml
    │   │   │   ├── nl.xaml
    │   │   │   ├── pl.xaml
    │   │   │   ├── pt-br.xaml
    │   │   │   ├── pt-pt.xaml
    │   │   │   ├── ru.xaml
    │   │   │   ├── sk.xaml
    │   │   │   ├── sr.xaml
    │   │   │   ├── tr.xaml
    │   │   │   ├── uk-UA.xaml
    │   │   │   ├── zh-cn.xaml
    │   │   │   └── zh-tw.xaml
    │   │   ├── Main.cs
    │   │   ├── NumberTranslator.cs
    │   │   ├── plugin.json
    │   │   ├── Settings.cs
    │   │   ├── ViewModels
    │   │   │   └── SettingsViewModel.cs
    │   │   └── Views
    │   │       ├── CalculatorSettings.xaml
    │   │       └── CalculatorSettings.xaml.cs
    │   ├── Flow.Launcher.Plugin.Explorer
    │   │   ├── ContextMenu.cs
    │   │   ├── EverythingSDK
    │   │   │   ├── x64
    │   │   │   │   └── Everything.dll
    │   │   │   └── x86
    │   │   │       └── Everything.dll
    │   │   ├── Exceptions
    │   │   │   ├── EngineNotAvailableException.cs
    │   │   │   └── SearchException.cs
    │   │   ├── Flow.Launcher.Plugin.Explorer.csproj
    │   │   ├── Helper
    │   │   │   ├── ShellContextMenu.cs
    │   │   │   └── SortOptionTranslationHelper.cs
    │   │   ├── Images
    │   │   │   ├── context_menu.png
    │   │   │   ├── copy.png
    │   │   │   ├── deletefilefolder.png
    │   │   │   ├── error.png
    │   │   │   ├── everything_error.png
    │   │   │   ├── excludeindexpath.png
    │   │   │   ├── explorer.png
    │   │   │   ├── file.png
    │   │   │   ├── folder.png
    │   │   │   ├── index_error2.png
    │   │   │   ├── index_error.png
    │   │   │   ├── quickaccess.png
    │   │   │   ├── removequickaccess.png
    │   │   │   ├── robot_error.png
    │   │   │   ├── user.png
    │   │   │   └── windowsindexingoptions.png
    │   │   ├── Languages
    │   │   │   ├── ar.xaml
    │   │   │   ├── cs.xaml
    │   │   │   ├── da.xaml
    │   │   │   ├── de.xaml
    │   │   │   ├── en.xaml
    │   │   │   ├── es-419.xaml
    │   │   │   ├── es.xaml
    │   │   │   ├── fr.xaml
    │   │   │   ├── it.xaml
    │   │   │   ├── ja.xaml
    │   │   │   ├── ko.xaml
    │   │   │   ├── nb.xaml
    │   │   │   ├── nl.xaml
    │   │   │   ├── pl.xaml
    │   │   │   ├── pt-br.xaml
    │   │   │   ├── pt-pt.xaml
    │   │   │   ├── ru.xaml
    │   │   │   ├── sk.xaml
    │   │   │   ├── sr.xaml
    │   │   │   ├── tr.xaml
    │   │   │   ├── uk-UA.xaml
    │   │   │   ├── zh-cn.xaml
    │   │   │   └── zh-tw.xaml
    │   │   ├── Main.cs
    │   │   ├── plugin.json
    │   │   ├── Search
    │   │   │   ├── Constants.cs
    │   │   │   ├── DirectoryInfo
    │   │   │   │   └── DirectoryInfoSearch.cs
    │   │   │   ├── EnvironmentVariables.cs
    │   │   │   ├── Everything
    │   │   │   │   ├── EverythingAPI.cs
    │   │   │   │   ├── EverythingApiDllImport.cs
    │   │   │   │   ├── EverythingDownloadHelper.cs
    │   │   │   │   ├── EverythingSearchManager.cs
    │   │   │   │   ├── EverythingSearchOption.cs
    │   │   │   │   ├── Exceptions
    │   │   │   │   │   ├── CreateThreadException.cs
    │   │   │   │   │   ├── CreateWindowException.cs
    │   │   │   │   │   ├── InvalidCallException.cs
    │   │   │   │   │   ├── InvalidIndexException.cs
    │   │   │   │   │   ├── IPCErrorException.cs
    │   │   │   │   │   ├── MemoryErrorException.cs
    │   │   │   │   │   └── RegisterClassExException.cs
    │   │   │   │   └── SortOption.cs
    │   │   │   ├── IProvider
    │   │   │   │   ├── IContentIndexProvider.cs
    │   │   │   │   ├── IIndexProvider.cs
    │   │   │   │   └── IPathIndexProvider.cs
    │   │   │   ├── QuickAccessLinks
    │   │   │   │   ├── AccessLink.cs
    │   │   │   │   └── QuickAccess.cs
    │   │   │   ├── ResultManager.cs
    │   │   │   ├── SearchManager.cs
    │   │   │   ├── SearchResult.cs
    │   │   │   └── WindowsIndex
    │   │   │       ├── QueryConstructor.cs
    │   │   │       ├── WindowsIndex.cs
    │   │   │       └── WindowsIndexSearchManager.cs
    │   │   ├── Settings.cs
    │   │   ├── ViewModels
    │   │   │   ├── ActionKeywordModel.cs
    │   │   │   ├── EnumBindingModel.cs
    │   │   │   ├── RelayCommand.cs
    │   │   │   └── SettingsViewModel.cs
    │   │   └── Views
    │   │       ├── ActionKeywordSetting.xaml
    │   │       ├── ActionKeywordSetting.xaml.cs
    │   │       ├── Converters
    │   │       │   └── EverythingEnumNameConverter.cs
    │   │       ├── ExplorerSettings.xaml
    │   │       └── ExplorerSettings.xaml.cs
    │   ├── Flow.Launcher.Plugin.PluginIndicator
    │   │   ├── Flow.Launcher.Plugin.PluginIndicator.csproj
    │   │   ├── Images
    │   │   │   └── work.png
    │   │   ├── Languages
    │   │   │   ├── ar.xaml
    │   │   │   ├── cs.xaml
    │   │   │   ├── da.xaml
    │   │   │   ├── de.xaml
    │   │   │   ├── en.xaml
    │   │   │   ├── es-419.xaml
    │   │   │   ├── es.xaml
    │   │   │   ├── fr.xaml
    │   │   │   ├── it.xaml
    │   │   │   ├── ja.xaml
    │   │   │   ├── ko.xaml
    │   │   │   ├── nb.xaml
    │   │   │   ├── nl.xaml
    │   │   │   ├── pl.xaml
    │   │   │   ├── pt-br.xaml
    │   │   │   ├── pt-pt.xaml
    │   │   │   ├── ru.xaml
    │   │   │   ├── sk.xaml
    │   │   │   ├── sr.xaml
    │   │   │   ├── tr.xaml
    │   │   │   ├── uk-UA.xaml
    │   │   │   ├── zh-cn.xaml
    │   │   │   └── zh-tw.xaml
    │   │   ├── Main.cs
    │   │   └── plugin.json
    │   ├── Flow.Launcher.Plugin.PluginsManager
    │   │   ├── ContextMenu.cs
    │   │   ├── Flow.Launcher.Plugin.PluginsManager.csproj
    │   │   ├── Images
    │   │   │   ├── manifestsite.png
    │   │   │   ├── pluginsmanager.png
    │   │   │   ├── request.png
    │   │   │   └── sourcecode.png
    │   │   ├── Languages
    │   │   │   ├── ar.xaml
    │   │   │   ├── cs.xaml
    │   │   │   ├── da.xaml
    │   │   │   ├── de.xaml
    │   │   │   ├── en.xaml
    │   │   │   ├── es-419.xaml
    │   │   │   ├── es.xaml
    │   │   │   ├── fr.xaml
    │   │   │   ├── it.xaml
    │   │   │   ├── ja.xaml
    │   │   │   ├── ko.xaml
    │   │   │   ├── nb.xaml
    │   │   │   ├── nl.xaml
    │   │   │   ├── pl.xaml
    │   │   │   ├── pt-br.xaml
    │   │   │   ├── pt-pt.xaml
    │   │   │   ├── ru.xaml
    │   │   │   ├── sk.xaml
    │   │   │   ├── sr.xaml
    │   │   │   ├── tr.xaml
    │   │   │   ├── uk-UA.xaml
    │   │   │   ├── zh-cn.xaml
    │   │   │   └── zh-tw.xaml
    │   │   ├── Main.cs
    │   │   ├── plugin.json
    │   │   ├── PluginsManager.cs
    │   │   ├── Settings.cs
    │   │   ├── Utilities.cs
    │   │   ├── ViewModels
    │   │   │   └── SettingsViewModel.cs
    │   │   └── Views
    │   │       ├── PluginsManagerSettings.xaml
    │   │       └── PluginsManagerSettings.xaml.cs
    │   ├── Flow.Launcher.Plugin.ProcessKiller
    │   │   ├── Flow.Launcher.Plugin.ProcessKiller.csproj
    │   │   ├── Images
    │   │   │   └── app.png
    │   │   ├── Languages
    │   │   │   ├── ar.xaml
    │   │   │   ├── cs.xaml
    │   │   │   ├── da.xaml
    │   │   │   ├── de.xaml
    │   │   │   ├── en.xaml
    │   │   │   ├── es-419.xaml
    │   │   │   ├── es.xaml
    │   │   │   ├── fr.xaml
    │   │   │   ├── it.xaml
    │   │   │   ├── ja.xaml
    │   │   │   ├── ko.xaml
    │   │   │   ├── nb.xaml
    │   │   │   ├── nl.xaml
    │   │   │   ├── pl.xaml
    │   │   │   ├── pt-br.xaml
    │   │   │   ├── pt-pt.xaml
    │   │   │   ├── ru.xaml
    │   │   │   ├── sk.xaml
    │   │   │   ├── sr.xaml
    │   │   │   ├── tr.xaml
    │   │   │   ├── uk-UA.xaml
    │   │   │   ├── zh-cn.xaml
    │   │   │   └── zh-tw.xaml
    │   │   ├── Main.cs
    │   │   ├── plugin.json
    │   │   ├── ProcessHelper.cs
    │   │   ├── ProcessResult.cs
    │   │   └── Readme.md
    │   ├── Flow.Launcher.Plugin.Program
    │   │   ├── AddProgramSource.xaml
    │   │   ├── AddProgramSource.xaml.cs
    │   │   ├── Flow.Launcher.Plugin.Program.csproj
    │   │   ├── Images
    │   │   │   ├── cmd.png
    │   │   │   ├── disable.png
    │   │   │   ├── folder.png
    │   │   │   ├── program.png
    │   │   │   └── user.png
    │   │   ├── Languages
    │   │   │   ├── ar.xaml
    │   │   │   ├── cs.xaml
    │   │   │   ├── da.xaml
    │   │   │   ├── de.xaml
    │   │   │   ├── en.xaml
    │   │   │   ├── es-419.xaml
    │   │   │   ├── es.xaml
    │   │   │   ├── fr.xaml
    │   │   │   ├── it.xaml
    │   │   │   ├── ja.xaml
    │   │   │   ├── ko.xaml
    │   │   │   ├── nb.xaml
    │   │   │   ├── nl.xaml
    │   │   │   ├── pl.xaml
    │   │   │   ├── pt-br.xaml
    │   │   │   ├── pt-pt.xaml
    │   │   │   ├── ru.xaml
    │   │   │   ├── sk.xaml
    │   │   │   ├── sr.xaml
    │   │   │   ├── tr.xaml
    │   │   │   ├── uk-UA.xaml
    │   │   │   ├── zh-cn.xaml
    │   │   │   └── zh-tw.xaml
    │   │   ├── Logger
    │   │   │   └── ProgramLogger.cs
    │   │   ├── Main.cs
    │   │   ├── plugin.json
    │   │   ├── Programs
    │   │   │   ├── IProgram.cs
    │   │   │   ├── ShellLinkHelper.cs
    │   │   │   ├── ShellLocalization.cs
    │   │   │   ├── UWPPackage.cs
    │   │   │   └── Win32.cs
    │   │   ├── ProgramSuffixes.xaml
    │   │   ├── ProgramSuffixes.xaml.cs
    │   │   ├── Settings.cs
    │   │   ├── SuffixesConverter.cs
    │   │   ├── ViewModels
    │   │   │   └── AddProgramSourceViewModel.cs
    │   │   └── Views
    │   │       ├── Commands
    │   │       │   └── ProgramSettingDisplay.cs
    │   │       ├── Models
    │   │       │   └── ProgramSource.cs
    │   │       ├── ProgramSetting.xaml
    │   │       └── ProgramSetting.xaml.cs
    │   ├── Flow.Launcher.Plugin.Shell
    │   │   ├── Flow.Launcher.Plugin.Shell.csproj
    │   │   ├── Images
    │   │   │   ├── admin.png
    │   │   │   ├── copy.png
    │   │   │   ├── shell.png
    │   │   │   └── user.png
    │   │   ├── Languages
    │   │   │   ├── ar.xaml
    │   │   │   ├── cs.xaml
    │   │   │   ├── da.xaml
    │   │   │   ├── de.xaml
    │   │   │   ├── en.xaml
    │   │   │   ├── es-419.xaml
    │   │   │   ├── es.xaml
    │   │   │   ├── fr.xaml
    │   │   │   ├── it.xaml
    │   │   │   ├── ja.xaml
    │   │   │   ├── ko.xaml
    │   │   │   ├── nb.xaml
    │   │   │   ├── nl.xaml
    │   │   │   ├── pl.xaml
    │   │   │   ├── pt-br.xaml
    │   │   │   ├── pt-pt.xaml
    │   │   │   ├── ru.xaml
    │   │   │   ├── sk.xaml
    │   │   │   ├── sr.xaml
    │   │   │   ├── tr.xaml
    │   │   │   ├── uk-UA.xaml
    │   │   │   ├── zh-cn.xaml
    │   │   │   └── zh-tw.xaml
    │   │   ├── Main.cs
    │   │   ├── plugin.json
    │   │   ├── Settings.cs
    │   │   ├── ShellSetting.xaml
    │   │   └── ShellSetting.xaml.cs
    │   ├── Flow.Launcher.Plugin.Sys
    │   │   ├── Flow.Launcher.Plugin.Sys.csproj
    │   │   ├── Images
    │   │   │   ├── app.png
    │   │   │   ├── checkupdate.png
    │   │   │   ├── close.png
    │   │   │   ├── hibernate.png
    │   │   │   ├── indexoption.png
    │   │   │   ├── lock.png
    │   │   │   ├── logoff.png
    │   │   │   ├── openrecyclebin.png
    │   │   │   ├── recyclebin.png
    │   │   │   ├── restart_advanced.png
    │   │   │   ├── restart.png
    │   │   │   ├── shutdown.png
    │   │   │   └── sleep.png
    │   │   ├── Languages
    │   │   │   ├── ar.xaml
    │   │   │   ├── cs.xaml
    │   │   │   ├── da.xaml
    │   │   │   ├── de.xaml
    │   │   │   ├── en.xaml
    │   │   │   ├── es-419.xaml
    │   │   │   ├── es.xaml
    │   │   │   ├── fr.xaml
    │   │   │   ├── it.xaml
    │   │   │   ├── ja.xaml
    │   │   │   ├── ko.xaml
    │   │   │   ├── nb.xaml
    │   │   │   ├── nl.xaml
    │   │   │   ├── pl.xaml
    │   │   │   ├── pt-br.xaml
    │   │   │   ├── pt-pt.xaml
    │   │   │   ├── ru.xaml
    │   │   │   ├── sk.xaml
    │   │   │   ├── sr.xaml
    │   │   │   ├── tr.xaml
    │   │   │   ├── uk-UA.xaml
    │   │   │   ├── zh-cn.xaml
    │   │   │   └── zh-tw.xaml
    │   │   ├── Main.cs
    │   │   ├── plugin.json
    │   │   ├── SysSettings.xaml
    │   │   └── SysSettings.xaml.cs
    │   ├── Flow.Launcher.Plugin.Url
    │   │   ├── Flow.Launcher.Plugin.Url.csproj
    │   │   ├── Images
    │   │   │   └── url.png
    │   │   ├── Languages
    │   │   │   ├── ar.xaml
    │   │   │   ├── cs.xaml
    │   │   │   ├── da.xaml
    │   │   │   ├── de.xaml
    │   │   │   ├── en.xaml
    │   │   │   ├── es-419.xaml
    │   │   │   ├── es.xaml
    │   │   │   ├── fr.xaml
    │   │   │   ├── it.xaml
    │   │   │   ├── ja.xaml
    │   │   │   ├── ko.xaml
    │   │   │   ├── nb.xaml
    │   │   │   ├── nl.xaml
    │   │   │   ├── pl.xaml
    │   │   │   ├── pt-br.xaml
    │   │   │   ├── pt-pt.xaml
    │   │   │   ├── ru.xaml
    │   │   │   ├── sk.xaml
    │   │   │   ├── sr.xaml
    │   │   │   ├── tr.xaml
    │   │   │   ├── uk-UA.xaml
    │   │   │   ├── zh-cn.xaml
    │   │   │   └── zh-tw.xaml
    │   │   ├── Main.cs
    │   │   ├── plugin.json
    │   │   ├── SettingsControl.xaml
    │   │   ├── SettingsControl.xaml.cs
    │   │   └── Settings.cs
    │   ├── Flow.Launcher.Plugin.WebSearch
    │   │   ├── Flow.Launcher.Plugin.WebSearch.csproj
    │   │   ├── Images
    │   │   │   ├── baidu.png
    │   │   │   ├── bing.png
    │   │   │   ├── duckduckgo.png
    │   │   │   ├── facebook.png
    │   │   │   ├── gist.png
    │   │   │   ├── github.png
    │   │   │   ├── gmail.png
    │   │   │   ├── google_drive.png
    │   │   │   ├── google_maps.png
    │   │   │   ├── google.png
    │   │   │   ├── google_translate.png
    │   │   │   ├── netflix.png
    │   │   │   ├── pictures.png
    │   │   │   ├── stackoverflow.png
    │   │   │   ├── twitter.png
    │   │   │   ├── web_search.png
    │   │   │   ├── wiki.png
    │   │   │   ├── wolframalpha.png
    │   │   │   ├── yahoo.png
    │   │   │   ├── youtubemusic.png
    │   │   │   └── youtube.png
    │   │   ├── Languages
    │   │   │   ├── ar.xaml
    │   │   │   ├── cs.xaml
    │   │   │   ├── da.xaml
    │   │   │   ├── de.xaml
    │   │   │   ├── en.xaml
    │   │   │   ├── es-419.xaml
    │   │   │   ├── es.xaml
    │   │   │   ├── fr.xaml
    │   │   │   ├── it.xaml
    │   │   │   ├── ja.xaml
    │   │   │   ├── ko.xaml
    │   │   │   ├── nb.xaml
    │   │   │   ├── nl.xaml
    │   │   │   ├── pl.xaml
    │   │   │   ├── pt-br.xaml
    │   │   │   ├── pt-pt.xaml
    │   │   │   ├── ru.xaml
    │   │   │   ├── sk.xaml
    │   │   │   ├── sr.xaml
    │   │   │   ├── tr.xaml
    │   │   │   ├── uk-UA.xaml
    │   │   │   ├── zh-cn.xaml
    │   │   │   └── zh-tw.xaml
    │   │   ├── Main.cs
    │   │   ├── plugin.json
    │   │   ├── SearchSource.cs
    │   │   ├── SearchSourceSetting.xaml
    │   │   ├── SearchSourceSetting.xaml.cs
    │   │   ├── SearchSourceViewModel.cs
    │   │   ├── setting.json
    │   │   ├── SettingsControl.xaml
    │   │   ├── SettingsControl.xaml.cs
    │   │   ├── Settings.cs
    │   │   ├── SettingsViewModel.cs
    │   │   └── SuggestionSources
    │   │       ├── Baidu.cs
    │   │       ├── Bing.cs
    │   │       ├── DuckDuckGo.cs
    │   │       ├── Google.cs
    │   │       └── SuggestionSource.cs
    │   └── Flow.Launcher.Plugin.WindowsSettings
    │       ├── Classes
    │       │   └── WindowsSetting.cs
    │       ├── Flow.Launcher.Plugin.WindowsSettings.csproj
    │       ├── Helper
    │       │   ├── ContextMenuHelper.cs
    │       │   ├── JsonSettingsListHelper.cs
    │       │   ├── ResultHelper.cs
    │       │   ├── TranslationHelper.cs
    │       │   └── UnsupportedSettingsHelper.cs
    │       ├── Images
    │       │   ├── ControlPanel_Small.png
    │       │   └── WindowsSettings.light.png
    │       ├── Log.cs
    │       ├── Main.cs
    │       ├── plugin.json
    │       ├── Properties
    │       │   ├── Resources.ar-SA.resx
    │       │   ├── Resources.cs-CZ.resx
    │       │   ├── Resources.cs.resx
    │       │   ├── Resources.da-DK.resx
    │       │   ├── Resources.de-DE.resx
    │       │   ├── Resources.de.resx
    │       │   ├── Resources.Designer.cs
    │       │   ├── Resources.es-419.resx
    │       │   ├── Resources.es-EM.resx
    │       │   ├── Resources.es.resx
    │       │   ├── Resources.fr-FR.resx
    │       │   ├── Resources.fr.resx
    │       │   ├── Resources.hu.resx
    │       │   ├── Resources.it-IT.resx
    │       │   ├── Resources.it.resx
    │       │   ├── Resources.ja-JP.resx
    │       │   ├── Resources.ja.resx
    │       │   ├── Resources.ko-KR.resx
    │       │   ├── Resources.ko.resx
    │       │   ├── Resources.nb-NO.resx
    │       │   ├── Resources.nl-NL.resx
    │       │   ├── Resources.pl-PL.resx
    │       │   ├── Resources.pl.resx
    │       │   ├── Resources.pt-BR.resx
    │       │   ├── Resources.pt-PT.resx
    │       │   ├── Resources.resx
    │       │   ├── Resources.ru.resx
    │       │   ├── Resources.ru-RU.resx
    │       │   ├── Resources.sk-SK.resx
    │       │   ├── Resources.sr-CS.resx
    │       │   ├── Resources.sv.resx
    │       │   ├── Resources.tr.resx
    │       │   ├── Resources.tr-TR.resx
    │       │   ├── Resources.uk-UA.resx
    │       │   ├── Resources.zh-cn.resx
    │       │   └── Resources.zh-TW.resx
    │       ├── README.md
    │       └── WindowsSettings.json
    ├── README.md
    ├── Scripts
    │   ├── flowlauncher.nuspec
    │   └── post_build.ps1
    └── SolutionAssemblyInfo.cs

112 directories, 904 files

标签:

实例下载地址

Flow.Launcher:Windows的快速文件搜索和应用启动器,配有社区制作的插件

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警