-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
[Windows] Allow tap gesture in ContentView #17482
base: main
Are you sure you want to change the base?
Conversation
@@ -23,6 +23,8 @@ public async Task EntryTextColorStopsWorkingAfterPropertyIsUpdatedFromBinding() | |||
|
|||
await Task.Delay(1000); // Wait for Ripple Effect animation to complete. | |||
|
|||
await Task.Delay(1000); // Wait to complete the Ripple Effect animation. |
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.
do we need both here @jsuarezruiz ? seems we have 2 delays
{ | ||
var platformContent = content.ToPlatform(mauiContext); | ||
|
||
var defaultBrush = new UI.Xaml.Media.SolidColorBrush(Colors.Transparent.ToWindowsColor()); |
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.
Should we hardcode the Transparent here? I wonder if we should usa something like a Resource so users could override it if they want at platform level
Description of Change
Allow gestures in Windows ContentView (mostly custom controls).
To validate the changes can use the added sample in the UITest project manually or using the test.
Issues Fixed
Fixes #15810