Open jasonmsmith opened 4 months ago
Hi I'm an AI powered bot that finds similar issues based off the issue title.
Please view the issues below to see if they solve your problem, and if the issue describes your problem please consider closing this one and thumbs upping the other issue to help us prioritize it. Thank you!
Note: You can give me feedback by thumbs upping or thumbs downing this comment.
This issue has been verified using Visual Studio 17.16.12 (build 410) (8.0.70 &8.0.61). Can not be reproduced
By "latest version" do you mean MAUI 8.0.70, or do you want me to try .Net 9? I currently have .Net SDK 8.0.303 installed, which is the latest version of .Net 8 that I can find. The maui workload that I have installed is version 8.0.61/8.0.100, as reported by dotnet workload list
.
I just tested the reproduction project using 8.0.70 and received exactly the same behavior reported in my initial post. (To change versions, I simply added the
I am using a Mac Mini with an M2 processor running Sonoma 14.1.1. I do not have Visual Studio on this machine; I removed it after the announcement several months ago that it was being retired. The download link on https://visualstudio.microsoft.com/vs/mac/ is currently broken for me. In both browsers I tried on my Mac, it redirects to the Windows download.
According to the latest information you provided, it is reproduced on Mac Mini with an M2 processor VS17.6.13(build 424) (8.0.70 & 8.0.3) SDK version is 8.0.303 Note: not repro on Mac Mini with an intel processor and SDK version is 8.0.302.
Hi this appears to be working on my end as well on a new maui project on 8.0.61 using VSCode on my mac.
https://github.com/user-attachments/assets/b5d84817-34ae-47b3-af63-643b66686d6a
And I do not get any errors when testing your sample
In a brand new maui project, do you still see this behavior?
In a brand new maui project, do you still see this behavior?
Yes, I do. @tj-devel709, can you confirm that you are using Apple Silicon and not Intel? Per @ninachen03, the issue is not reproducible on Intel macs.
I have already completed the following troubleshooting steps:
Yes, I do. @tj-devel709, can you confirm that you are using Apple Silicon and not Intel? Per @ninachen03, the issue is not reproducible on Intel macs.
@tj-devel709 Can you confirm this, please? I have a non-trivial B2B app that is dependent on this feature for one of its core functions. This bug is a show-stopper for us.
@davidortinau, @Eilon, @samhouts Can you comment on why your team has fallen silent on this issue without providing any guidance? I am overdue for reporting to my client about the outlook for fixing this issue. Please at least provide guidance on whether and/or when you intend to allocate any further resources to this bug within the next month. We are using MAUI to build a real business app on a real schedule & can't afford to wait indefinitely.
Hmm. That which I greatly feared has come upon me: it seems this bug is being ignored.
After further testing, I discovered that this bug is caused by operating the Mac via Remote Management (in my case, RealVNC Viewer). When connecting hardware and operating the Mac directly, the bug disappears. Since Remote Management support is not a requirement for our app in production, I am OK with closing this issue. However, the bug does exist in Remote Management scenarios and may need further attention to support that use case.
Description
I am attempting to drag an image from one view in my app and drop it in another view. I use
DragGestureRecorgnizer
on the source view andDropGestureRecognizer
on the target view. Everything works perfectly on Windows and iPad, but fails on Mac Catalyst. When attempting on Mac Catalyst, the following two lines show up in the standard output when I try to drag and drop:The first line appears when the drag begins. The second line appears when I attempt to drop. I have tried many combinations of settings & event handlers, but the error persists. It doesn't seem to matter what type of view I attach the GestureRecognizers to; the error is the same. I have even attempted to bypass the gesture recognizers and manipulate the underlying native views directly. I receive the same error in all cases.
After generating the output above, the drag & drop operation fails. The events/commands configured for Drop and/or DropCompleted are never called. The draggable view cannot be dragged again until the application is restarted.
Steps to Reproduce
Add two views to the MainPage.xaml file, configured with
DragGestureRecognizer
andDropGestureRecognizer
, respectively. Like so:Link to public reproduction project repository
https://github.com/jasonmsmith/mac-catalyst-drag-drop-sample
Version with bug
8.0.61 SR6.1
Is this a regression from previous behavior?
Not sure, did not test other versions
Last version that worked well
Unknown/Other
Affected platforms
macOS
Affected platform versions
No response
Did you find any workaround?
Not yet.
Relevant log output
No response