PowerToys/src
Tomas Agustin Raies 93752fb6cb
Display Unicode character for keys in HotkeySettingsControl (#2249)
* Fix HotkeyControl virtual key display

* A new interop project was setup to provide wrappers for C# projects
  that want to access functionality in the common project.

* Add assembly info

* Remove WIN32 configurations
2020-04-20 21:01:21 -07:00
..
action_runner Cleanup project output/intermediate dirs (#1640) 2020-03-20 21:41:48 +03:00
codeAnalysis Settingsv2 fix warnings (#2076) 2020-04-10 15:22:07 -07:00
common Display Unicode character for keys in HotkeySettingsControl (#2249) 2020-04-20 21:01:21 -07:00
core Display Unicode character for keys in HotkeySettingsControl (#2249) 2020-04-20 21:01:21 -07:00
modules Display Unicode character for keys in HotkeySettingsControl (#2249) 2020-04-20 21:01:21 -07:00
runner Merge Master Latest in dev/build-features 4/17/20 2020-04-17 10:54:27 -07:00
settings FancyZones: optimize elevation detection logic (#2103) 2020-04-13 18:22:37 +03:00
settings-web settings: fix minimist package vulnerable version (#2021) 2020-04-09 17:20:17 +02:00
tests/win-app-driver Merge branch 'master' into dev/build-features 2020-04-20 09:15:32 -07:00
.clang-format Formatting chores (#1441) 2020-03-05 13:07:06 +03:00
README.md Update README.md 2019-10-25 15:21:16 +02:00

PowerToys Source Code

Code organization

The PowerToys are split into DLLs for each PowerToy module (modules folder), and an executable (runner folder) that loads and manages those DLLs.

The settings window is a separate executable, contained in settings folder. It utilizes a WebView to display an HTML-based settings window (contained in settings-web folder).

The common contains code for a static libary with helper functions, used by both the runner and the PowerToys modules.