This repository has been archived by the owner on Jul 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #563 from Microsoft/dev
Integrating dev into master
- Loading branch information
Showing
5 changed files
with
128 additions
and
41 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
assembly-versioning-scheme: MajorMinorPatchTag | ||
mode: ContinuousDeployment | ||
branches: {} | ||
branches: | ||
master: | ||
tag: alpha | ||
prevent-increment-of-merged-branch-version: true | ||
dev: | ||
tag: unstable | ||
next-version: 2.4 | ||
ignore: | ||
sha: [] |
This file contains 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
This file contains 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
4 changes: 2 additions & 2 deletions
4
...estAssets/CommentsInRecommendedChanges.md → ...ssets/ASPNET-accessibility-improvement.md
This file contains 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
56 changes: 56 additions & 0 deletions
56
tests/Microsoft.Fx.Portability.Tests/TestAssets/wpf-pointer-based-touch-stack.md
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
## WPF Pointer-Based Touch Stack | ||
|
||
### Scope | ||
Edge | ||
|
||
### Version Introduced | ||
4.7 | ||
|
||
### Source Analyzer Status | ||
NotPlanned | ||
|
||
### Change Description | ||
This change adds the ability to enable an optional WM_POINTER based WPF touch/stylus stack. Developers that do not explicitly enable this should see no change in WPF touch/stylus behavior. | ||
|
||
Current Known Issues With optional WM_POINTER based touch/stylus stack: | ||
- No support for real-time inking. | ||
- While inking and StylusPlugins will still work, they will be processed on the UI Thread which can lead to poor performance. | ||
- Behavioral changes due to changes in promotion from touch/stylus events to mouse events | ||
- Manipulation may behave differently | ||
- Drag/Drop will not show appropriate feedback for touch input | ||
- This does not affect stylus input | ||
- Drag/Drop can no longer be initiated on touch/stylus events | ||
- This can potentially hang the application until mouse input is detected. | ||
- Instead, developers should initiate drag and drop from mouse events. | ||
|
||
- [X] Quirked | ||
- [ ] Build-time break | ||
|
||
### Recommended Action | ||
Developers who wish to enable this stack can add/merge the following to their application's App.config file: | ||
|
||
```xml | ||
<configuration> | ||
<runtime> | ||
<AppContextSwitchOverrides value="Switch.System.Windows.Input.Stylus.EnablePointerSupport=true"/> | ||
</runtime> | ||
</configuration> | ||
``` | ||
|
||
Removing this or setting the value to false will turn this optional stack off. | ||
|
||
Please note that this stack is available only on Windows 10 Creators Update and above. | ||
|
||
### Affected APIs | ||
Not detectable via API analysis | ||
|
||
### Category | ||
Windows Presentation Foundation (WPF) | ||
|
||
<!-- | ||
# Original bug | ||
197685 | ||
--> | ||
|
||
<!-- breaking change id: 172 --> |