Publish - Move to Framework Independent did not work
Hi, I have MAUI app in .NET 9. When making setup with installshield i first install dotnet runtime 9. and later include Maui app + WPF app + stand alone app- log decoder in one setup. The app call in runtime to WPF application using Process Info…
Dirty log in login
Hi, I used log4net. When login I got this errors in the log, what it come from? Thanks. 2025-03-12 15:25:00,516 [1] ERROR GssdDesktopClient.Maui.ViewModels.LoginViewModel - LoginCommand System.InvalidOperationException: PlatformView cannot be null here …
Blank space is showing after webview when loading new content in MAUI
I want to create a UI with a Label(title), image(saint image) and a webview(to show HTMl content). When scroll I want to scroll the entire item, not the webview contents only. After all these I need a section to show the audio player with previous, next…
. net maui uses Microsoft Data.SqlClients encountered an exception when directly connecting to SQL Server
Microsoft.Data.SqlClient.SqlException (0x80131904): Successfully established a connection with the server, but an error occurred during the login process。 (provider: TCP provider, error: 0 - Success) HttpClient can be accessed normally SQL Server has not…
Why MAUI app as Exe is big
Hi, Why MAUI app as exe is big on windows? it can be solved Please see https://app.screencast.com/BVvSAWCZnNh9e ? Thanks,
Fonts become italic
Hi, In Maui template we have: fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular"); fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold"); Later I publish the app as exe. When I create setup with…
Highlighting text within a editor
Hi, I'm using .Net 9 with MAUI. Highlighting text within a editor. The highlight is not released. Remains highlighted even after selecting other text. <telerik:RadBorder Grid.Row="2" Grid.Column ="0" …
Error loading font 'Assets/Fonts/Segoe UI.ttf'. on log
Hi, I have this error when running the MAUI as exe. I do not have this fonts on my app in RESOURCES/FONTS and not resister it. 2025-03-13 11:57:26,921 [1] ERROR Microsoft.Maui.FontManager - Error loading font 'Assets/Fonts/Segoe…
Microsoft Visual Studio Professional 2022 (64-bit) - Preview Version 17.14.0 Preview 2.0 will no longer compile my MAUI app
After upgrading to preview 2, I cannot build my MAUI app. Visual Studio Output says: To build this project, the following workloads must be installed: wasm-tools-net8 To install these workloads, run the following command: dotnet workload restore But…
How to create Custom Themed Toggle Switch [Switch Class] (Microsoft.Maui.Controls)?
How can we design a custom themed toggle switch in .NET Maui with .NET 9; As we know we can do it using C# to design the switch and call it in XAML If somebody knows, please share your thoughts on this topic. For reference I have shared two links of…


flipping card update
I have my card using CommunityToolkit.Mvvm.Messaging; using System.Diagnostics; namespace LiveTileControl.Controls { public partial class LiveTileControl : ContentView { private bool _isFlipping; private bool _isDataAvailable; //…
Control Not Visible on Smaller Screens or High-Scale Displays in MAUI
I have a custom control in my .NET MAUI application that is not visible under the following conditions: The screen size is less than 15.6 inches The resolution is lower than 1920 x 1080 The display scale is greater than 125% The control works…
Unable to debug in Mac in Code
I have a Macbook with OS Sequoria. Xcode version 16.2. When I tried installing MAUI .NET 9.0.200 and tried debugging in VS Code. I got the below error: System.UnauthorizedAccessException: Access to the path…
MAUI: How to update the webview height after loading new content
I want to implement the below UI in my MAUI application (header and footer sections are not added): Below is my code (header and footer sections are not added): Webview to show HTML content(with a background image), Audio frame with previous, play and…
Maui app publish as EXE- steps in windows
Hi, I usually clean & rebuild my app in debug and later run this cmd : dotnet publish -f net9.0-windows10.0.19041.0 -c Release -p:WindowsPackageType=None -p:WindowsAppSDKSelfContained=true…
Create an IPA from Windows MAUI iOS + Extensions
Hi, we have a MAUI project with iOS extensions. We can run them on emulators and create the IPA either in Visual Studio or Visual Code on a Mac. Due to dotfuscator issues, we need to create the IPA, but now from Windows! We can create the IPA using the…
Access Azure App Configuration from a MAUI Mobile App
We are developing a .NET MAUI mobile application for Android and iOS. It uses AD authentication. It talks to several backend APIs we created in Azure and behind APIM, requiring both tokens and subscription keys. We have an Azure App Configuration…
How to use Service Extension for UNNotificationServiceExtension with MAUI ?
I'm trying to implement iOS push notifications by following this guide: https://learn.microsoft.com/en-us/xamarin/ios/platform/user-notifications/enhanced-user-notifications At the end, there is "Implementing a Service Extension" which…
Is there a sample MAUI application to call c/c++ libraries that can be built from Windows and used on Windows, iOS and Android?
I am trying to convert my Xamarin.Forms mobile applications to MAUI. My applications depend on C libraries developed by government agencies (NOAA and USNO). For Xamarin.Forms I found a very good example for building a NuGet package from C library code…
34.0 is not a valid TargetPlatformVersion for Android. Valid versions include: 35.0
I changed the Target framework in my Android project properties from .NET 8.0 to .NET 9.0. But then I get this error: 34.0 is not a valid TargetPlatformVersion for Android. Valid versions include: 35.0 Is it necessary to change the Target OS version…