Content
MAUI - All Apps crashing when running on IOS Emulators
Hi All my Apps are suddenly crashing when I run them on IOS emulators with the following errors: and output: [SceneConfiguration] Info.plist contained no UIScene configuration dictionary (looking for configuration named "(no…


Intermittent error - microsoft.net.workload.mono.toolchain error when running 'dotnet workload install maui' command in DevOps
Getting intermittent errors when running the dotnet workload install maui command via DevOps. Was stable until .Net SDK and/or microsoft.net.workload.mono.toolchain was updated on the DevOps agents. See log excerpts below, issue seems to be that…


Play Audio from HTTPS
Hi. How can I play an MP3 audio from HTTPS like https://www.domain.com/my.mp3 using https://github.com/jfversluis/Plugin.Maui.Audio Thanks, Jassim


Why are padding and margin not showing in properties tab of VS 2022
In keeping with the poor QA of VS now the properties window when selecting an XAML element no longer shows the padding or magins. If I were to publish the full list of problems I see in VS 2022 I would not get anything done. Check out the image to see…


How to obtain the notifications' deviceToken in MAUI iOS in C#?
In executing the following, how do I get the deviceToken? public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions) { NSData deviceToken; // Version check if…


Deployment error DEP1700
I am receiving this error when I try and debug my UWP app. DEP1700: The recipe file "C:\Users\xxxxxxxx\bin\Debug\net6.0-windows10.0.19041.0\xxxxxx.build.appxrecipe" does not exist. You may need to build your project. This is a MAUI…


Reading form fields after submit (POST) in Blazor Server?
I have a login form in Blazor Server App and use POST to send login data (email and password). <form id="LoginForm" Model="LoginModel" action="cookie" method="post"> …


Logout (delete Auth-Cookie) only possible via form!
I have a Blazor server application (see my post here: https://learn.microsoft.com/en-us/answers/questions/1164837/aspnet-authentication-works-but-value-for-user-ide). Now I have implemented a cookie authentication. This works very well via a login and…


Visual Studio Community 2022 (64-bit) v17.4.4 not showing any compile time errors for MAUI project.
Hi, I am using Microsoft Visual Studio Community 2022 (64-bit) - Current Version 17.4.4 for my MAUI projects but is not showing any compile time errors . is it any plugin missing?
Get Contact details by Id
Hi, How can I get the Contact details by its Id? like this: var contact = await Microsoft.Maui.ApplicationModel.Communication.Contacts.Default.PickContactAsync("contact-id-here"); Thanks, Jassim


Debugging Shell Navigation
Hello Friends, I was wondering if anyone knows where to put my DebuggerDisplay Attribute annotations so that I can debug my navigation requests. Thanks !!! Debugging navigation Some of the Shell classes are decorated with the DebuggerDisplayAttribute,…


Does XAML (UWP) Visual Designer in Blend for Visual Studio 2022 work on Windows 10?
I am trying to design a C# Maui UI in XAML. I read that you can use Blend for Visual Studio to visually program XAML code. So, I loaded a new C# Class project in Blend to attempt an XAML visual edit, though the "Design" tab says "Visual…


Shell Navigation and setting Parameter Values
I have included the code that I am using to pass parameters from one view to another view using shell navigation. The issue I am having is that I would like to set my model properties using for example the text entry control. Do I do that using a relay…


Shell Navigation and passing Parameter Values
Hi friends, I was wondering how to pass multiple parameters. I can pass one parameter for now... ?Name={Name} Thanks Task Navigate() => Shell.Current.GoToAsync($"{nameof(DetailPage)}?Name={Name}",


Maui android on screen keyboard issue
Hello all. How I can modify the on screen keyboard for my application. I want that the on screen keyboard when my app run to contain only the alphanumeric and a few non alphanumeric characters. How I can do that and when exit my app to return…


Maui android<helpview /> control issue
Hello all. because there is no helpview control. Is someone here can give me a way to add help to my application. Thank you very much


BrowserLaunchOptions's Style
Hi, Is it possible to set the properties of the BrowserLaunchOptions in the Resources's Style file? Thanks, Jassim


Net Maui how to solve memory using problem that is it bug ?
I am working on net maui as a developer I have memory problem that app is closing or freezing itself.. any solution or we have to wait for fixing the bug ? Thanks..


Questions about MAUI's Entitlement.plist
Hi, How important is the Entitlement.plist in MAUI? and why it's not added by default? so does this mean I don't need to for example to set the Push Notification capabilities? Kindly advise.. Thanks, Jassim


How to implement zoom in, Zoom out and scrolling functionality for GraphicsView element?
Currently I'm trying on Dot Net 7 only for android and iOS platforms. I am trying to zoom in on GraphicsView. Zoom in zoom out functionality is working fine but getting issue for scroll vertical and horizontal. scroll is not working. I want to scroll…