Joachim Leonfellner

Results 31 comments of Joachim Leonfellner

this is still an issue on .NET 7 😴

have you tried clearing the canvas inside of `PaintSurface` ? this should ensure a clean canvas for each render frame ```csharp private void _sImgView_PaintSurface(object sender, SKPaintGLSurfaceEventArgs e) { // this...

wtf 🫠 https://learn.microsoft.com/en-us/appcenter/retirement

I am running into the same issue. I have set an IntentFilter to enable the app to be launched from the share dialog for plaintext `[IntentFilter(new[] { Intent.ActionSend }, Categories...

any updates on this? Multi-Window doesn't work for me on macOS

thanks for the reply @davidbritch - turns out it was a typo in my plist file. Everything good now 🥳

I can reproduce the issue with a `Button` in a `CollectionView` `DataTemplate` that binds to a Command on the page's `BindingContext` and passes the data binding element `{Binding .}` to...

> Based on the current milestone set it looks like this is not making GA, since this is currently assigned to '.NET 8 + Servicing'. > > This is going...

@samhouts what's the status of this issue? CollectionView is broken on Windows for months now!

for Windows i currently use the following Extension method to change the cursor ```csharp public static void ChangeCursor(this UIElement uiElement, InputCursor cursor) { Type type = typeof(UIElement); type.InvokeMember("ProtectedCursor", BindingFlags.Public |...