Peter Spada

Results 14 comments of Peter Spada

Code in the following method should be using Visual Studio setup APIs to find the install path rather than making an educated guess: https://github.com/cake-build/cake/blob/a1893a2bba26f49e089d66beeb78421cedf6126d/src/Cake.Common/Tools/MSBuild/MSBuildResolver.cs#L160

I think a good alternative to SetProcessDPIAware() is SetThreadDpiAwarenessContext(), which just changes the current thread and also allows you to switch the thread's awareness back to the way it was:...

The debug output gives the element type, element name, and property name. I can only parse what's in the debug output string, no other context is given. So there is...

Right, it would help find the exact XAML element given the limited info provided in the debug output. It should be faster than manually looking.

@fbd-ss Sorry for being late to reply. Can you paste the contents of your debug output window? I'd like to see how the binding failures show up there. (Debug->Windows->Output in...

I removed partner/hot-reload-xaml label because hot reload is not involved, just having these two properties together are enough: ![image](https://github.com/dotnet/maui/assets/2523431/c5761268-7900-4a02-b41f-12c7ab388a61)

I think I'm seeing the same issue, here's my repro project: https://github.com/spadapet/maui_bugs Build and run the "BadBindingFailure" project in that solution. Click between the Test X tabs and it creates...

For me, now not only is the Flyout not refreshing, but my app crashes when a Flyout changes visibility. It's either a null exception or an index out of range...