Always-on-Top mode implemented#579
Merged
joseartrivera merged 36 commits intomicrosoft:masterfrom Jul 31, 2019
greedyAI:always-on-top
Merged
Always-on-Top mode implemented#579joseartrivera merged 36 commits intomicrosoft:masterfrom greedyAI:always-on-top
joseartrivera merged 36 commits intomicrosoft:masterfrom
greedyAI:always-on-top
Conversation
sanderl
reviewed
Jul 11, 2019
sanderl
reviewed
Jul 11, 2019
joshkoon
reviewed
Jul 12, 2019
joshkoon
reviewed
Jul 12, 2019
joshkoon
reviewed
Jul 12, 2019
joshkoon
reviewed
Jul 12, 2019
joshkoon
reviewed
Jul 12, 2019
joshkoon
reviewed
Jul 12, 2019
joshkoon
reviewed
Jul 12, 2019
joshkoon
reviewed
Jul 12, 2019
joshkoon
reviewed
Jul 12, 2019
joshkoon
reviewed
Jul 26, 2019
joshkoon
reviewed
Jul 26, 2019
grochocki
previously approved these changes
Jul 30, 2019
rudyhuyn
reviewed
Jul 30, 2019
joseartrivera
previously approved these changes
Jul 30, 2019
joseartrivera
previously approved these changes
Jul 30, 2019
liangchen07
approved these changes
Jul 31, 2019
liangchen07
left a comment
There was a problem hiding this comment.
Approve from the PM perspective.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implemented the 2nd most user requested new feature: the ability for users to pin Calculator on top of other windows.
Description of the changes:
Buttonhas been added toTitleBarand styled identical to the otherTitleBarbuttons. This button only appears in Standard calculator mode. Clicking on this button callsViewModePreferencesAPI to switch the window intoCompactOverlaymode (and back, when exiting from Always-on-Top mode).ViewModelis updated accordingly when the button is pressed. These updates propagate dependency properties and observable variables back to the UI to show/hide and enable/disable certain UI elements (eg. buttons) and keyboard shortcuts.LocalSettingswhenever the user resizes the screen in Always-on-Top mode. This is used for restoring the last used screen size when the user enters Always-on-Top mode.AdaptiveTriggersandSizedChangedevent handlers are used to implement a responsive UI: certain buttons are hidden when the screen shrinks and the font sizes vary based on the screen size as well.ItemsControland aTextBlockto render the desired mathematical result/expression. This scrollable expression shows the full mathematical expression when edited. When the user presses the "=" button, it shows the final computed result.How changes were validated:
Fixes #78