Forum Widgets
Latest Discussions
Debugging a .Net 11 Maui app for iPad
I am using Visual Studio 2026 to develop a .net 11 maui app for an iPad. The iPad is connected to my build map via USB. I understand debugging support on a physical device is not yet supported in .Net 11, but will be in the general release in Novenber. I've tried using the simulator on my windows machine but it is extreamly slow and freezes most of the time. How do I debug and continue development prior to the general release?glanzingSep 13, 2026Copper Contributor37Views0likes1CommentWindows insider's glitches
I'm unable to start Valorant since I switched to the windows insider program, it was stopping the vanguard to run. Vanguard is anti-cheat program which was run with the Valorant. I'm using latest windows insider experimental and I'm unable to uninstall it. How would I will solve this problem.ayush0011Sep 09, 2026Copper Contributor26Views0likes0CommentsPhone Link Fails to Sync Properly
It has been 3 months or so that phone link stopped working properly with my Android Samsung S26+ and Samsung S24+ phones. The phones are on the latest android version and the phone to link app is also updated on both my PC and phone. I have spoken with customer service at microsoft and there seems to be no answer. I get msgs on my phone but they do not all display on the PC. Only select msgs show. If I mirror the phone however everything shows properly. Any advice on how to fix this issue? Could it be because android phones moved from the samsung default messaging app to the google RSS mssging app? Any fix for this? I tried installing and unistalling the phone on my pc as well as unlinked then linked the phone twice.Nina415Sep 03, 2026Copper Contributor47Views0likes0CommentsShowcase: Real-Time Revit API Polling Bridge Built with C# / .NET
Hello .NET Community, I wanted to share an implementation project I recently built for a Devpost hackathon called "BIM MPT Urban Optimize." It focuses on using C# and .NET infrastructure to handle real-time data streaming between external execution environments and localized CAD/BIM client engines. Key Technical Highlights: • Built a custom background polling bridge in C# that safely interacts with the Revit API thread context. • Pushes data-optimized, active 3D geometric loops directly into running modeling document sessions in real-time. • Integrates external optimization logic using Modern Portfolio Theory (MPT) linear algebra and Simplex Projection mathematics to dynamically resolve parcel footprint boundaries. You can view the code breakdown, system workflow diagrams, and video demo here: https://devpost.com/software/bim-mpt-urban-optimize I would love to get your technical feedback on managing long-polling loops or background worker services safely within single-threaded legacy desktop API contexts. Best regards, Eng. Sherif MagdSherifMagdAug 29, 2026Copper Contributor48Views0likes0Comments.NET
Hi everyone! 👋 I’m new to this community and currently learning .NET App Development. I’m really excited to join and connect with developers here. I believe the discussions and knowledge shared in this community are very valuable, especially for beginners like me. I’m looking forward to learning from your experiences and improving my development skills. If you have any tips, recommended resources, or advice for someone starting with .NET, I would really appreciate it. Happy to be part of this community! 😊Thinuka99Jul 29, 2026Tin Contributor300Views3likes2CommentsUsing WinUI 3 without XAML
Hello everyone, I would like to know that how to use WinUI 3 without XAML. Thank you very much.tommerfrancisJul 19, 2026Tin Contributor323Views0likes1CommentConfigure registry permissions
Hi I have strange problem to set specific permission to a registry key. According to Microsoft's https://learn.microsoft.com/en-us/dotnet/api/system.security.accesscontrol.registrysecurity?view=net-10.0, it should work like this: private static RegistryKey CreateRegistryKey(RegistryKey parentPath) { RegistryKey childKey = parentPath.CreateSubKey("myKey"); RegistryAccessRule rule = new RegistryAccessRule( new SecurityIdentifier(WellKnownSidType.AuthenticatedUserSid, null), RegistryRights.ReadKey | RegistryRights.Delete, InheritanceFlags.ContainerInherit, PropagationFlags.None, AccessControlType.Allow); RegistrySecurity childACL = childKey.GetAccessControl(); childACL.AddAccessRule(rule); ShowSecurity(childACL); childKey.SetAccessControl(childACL); return childKey; } But if the code is executed in a windows service, I missing my permission!? How can this be? Am I doing something wrong? Have I overlooked something?Michl1611Jul 17, 2026Copper Contributor225Views0likes1Comment
Tags
- .NET MAUI158 Topics
- Windows Forms69 Topics
- android57 Topics
- ios40 Topics
- Xamarin.Forms34 Topics
- WPF33 Topics
- Blazor32 Topics
- Console Apps31 Topics
- UWP18 Topics
- macos17 Topics