-
Notifications
You must be signed in to change notification settings - Fork 2k
Implement all permutations of InputTransparent and CascadeInputTransparent #14846
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
2ce285c
Fix InputTransparent and CascadeInputTransparent
mattleibow 1895907
Adding some tests for the baseline
mattleibow 86bf05d
Merge branch 'dev/input-transparent' into dev/input-transparency
mattleibow 802dc6e
This works better
mattleibow 063147c
Fix this
mattleibow 77de113
Also these platforms
mattleibow 1224014
Support compatibility
mattleibow 36691d5
Merge remote-tracking branch 'origin/main' into dev/input-transparency
mattleibow 172a95e
Merge remote-tracking branch 'origin/main' into dev/input-transparency
mattleibow 61fa09f
Merge remote-tracking branch 'origin/main' into dev/input-transparency
mattleibow 36aca2b
Merge remote-tracking branch 'origin/main' into dev/input-transparency
mattleibow c69dabd
Improved the sample for testing
mattleibow 454de2f
Merge remote-tracking branch 'origin/main' into dev/input-transparency
mattleibow f83b9f8
Merge remote-tracking branch 'origin/main' into dev/input-transparency
mattleibow 9609697
See what this does
mattleibow 38213d6
Revert "See what this does"
mattleibow d695531
Merge remote-tracking branch 'origin/main' into dev/input-transparency
mattleibow e5ac916
comment out new tests
mattleibow 27366b9
Merge remote-tracking branch 'origin/main' into dev/input-transparency
mattleibow 31bfb34
Try reverting these
mattleibow c7887a7
Revert "Try reverting these"
mattleibow 5a6b8f0
Revert the bad code hacks
mattleibow 944f048
This should work!
mattleibow c1705c6
Merge remote-tracking branch 'origin/main' into dev/input-transparency
mattleibow 8572262
Merge remote-tracking branch 'origin/main' into dev/input-transparency
mattleibow bb9adac
Skip the failing test for now
mattleibow 572a2a4
this is no longer needed
mattleibow 2ed88fe
Merge remote-tracking branch 'origin/main' into dev/input-transparency
mattleibow 5cdd77f
Merge remote-tracking branch 'origin/main' into dev/input-transparency
mattleibow 19eb385
Merge branch 'random' into dev/input-transparency
mattleibow 9db3e96
Merge branch 'random3' into dev/input-transparency
mattleibow 2fde244
Merge branch 'rand4' into dev/input-transparency
mattleibow 41226bb
Merge remote-tracking branch 'origin/main' into dev/input-transparency
mattleibow 5634de3
removed as it is not needed
mattleibow 6f66935
Merge remote-tracking branch 'origin/main' into dev/input-transparency
mattleibow b3c4cf6
Merge remote-tracking branch 'origin/main' into dev/input-transparency
mattleibow File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
14 changes: 14 additions & 0 deletions
14
src/Controls/src/Core/IInputTransparentContainerElement.cs
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| #nullable disable | ||
|
|
||
| namespace Microsoft.Maui.Controls | ||
| { | ||
| // There are 2 Layout types: Controls and Compatibility | ||
| interface IInputTransparentContainerElement | ||
| { | ||
| bool InputTransparent { get; } | ||
|
|
||
| bool CascadeInputTransparent { get; } | ||
|
|
||
| Element Parent { get; } | ||
| } | ||
| } | ||
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you include inline comments here?