MAUI *.xaml.sg.cs files are not regenerating causing Duplicate 'global::Microsoft.Maui.Controls.Xaml.XamlFilePath' attribute errors
MAUI *.xaml.sg.cs files are not regenerating on build causing "Duplicate 'global::Microsoft.Maui.Controls.Xaml.XamlFilePath' attribute" errors.
.NET MAUI
Loading pop up
https://reccloud.com/u/nq75s16 <toolkit:Popup x:Class="FireChat.Views.PopUps.LoadingPopUp" xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" …
.NET MAUI
Flayout page navigation-passing parameter
Hi, im using net 9. I would like to know how i can pass parameters between pages using official maui flayout page navigation. Thanks in advance,
.NET MAUI
How to fix The AOTCompile task failed unexpectedly in .NET Maui iOS on MacOs?
I recently moved from an x86 Intel Macbook to an Apple Silicon Macbook. I'm working on a .NET9 iOS app in Maui using JetBrains Rider. The app builds but won't deploy. The error states that the AOTCompile command is looking in the wrong directory for…
.NET MAUI
Images show up on other devices but not windows build
Hi, I am building a .net maui application my .png's show up on android and android emulators But I am unable to get the same image on windows build, or any image for that matter of fact Here is the code that use. var var image = new Image() { …
.NET MAUI
Image do not bind
This is the VM public partial class AppShellViewModel : BaseViewModel { readonly FirebaseAuthClient _authClient; readonly WeakReferenceMessenger _messenger; readonly IMediaPicker _mediaPicker; [ObservableProperty] LocalUser…
.NET MAUI
Binding null, but is working
In have my viewModel using System.Collections.ObjectModel; namespace FireChat.ViewModels; public partial class AppShellViewModel : BaseViewModel { readonly FirebaseAuthClient _authClient; readonly WeakReferenceMessenger _messenger; …
.NET MAUI
Command does not hit
I have this chunk of code <sfPopup:SfPopup x:Name="UserProfilePopup" AbsoluteY="20" AcceptButtonText="Save and close" AcceptCommand="{Binding SavePopUpContentCommand}" …
.NET MAUI
Splash Screen not showing up for windows build on .net maui
Hello all, So I created a simple custom splash screen, it works for android but not on a windows desktop. Here is the code public partial class SplashScreen : ContentPage { private ContinousAudio continousAudio; public…
.NET MAUI
Limitations When Launching .NET MAUI Windows App via Custom URI Scheme
I've added the following entry to the Package.appxmanifest for my .NET MAUI Windows app to support activation via a custom URI scheme: After investigating this setup, I observed the following limitations: Key Findings Windows Focus Restrictions: When the…
.NET MAUI
IOS -Tabbar not showing after navigating from a contentpage where Shell.TabBarIsVisible="False"
I am navigating from a page where Shell.TabBarIsVisible="False" as its requirement , the page is not showing TabBar in further pages. I tried setting Shell.TabBarIsVisible="True" but not working for following pages. If these pages…
.NET MAUI
Flyout separators
Hello So, I am trying to clone this design Note the shell will only be visible on windows Note: the red square, is becouse of privacy reasons if you read this…
.NET MAUI
How to remove page navigation animation in .Net MAUI?
I am using Appshell for navigation. Appshell.Xaml.cs Routing.RegisterRoute(nameof(LoginPage), typeof(LoginPage)); In Viewmodel relay command i am call the below AppShell.Current.GoToAsync(nameof(LoginPage)); Animation is moving from left to…
.NET MAUI
In 8 entries, 2 entries text change event not triggered
In a Content View, we have 8 entries, which will change based on one picker. If pickers change the value all the 8 entries value would change, on first time we select the value from the picker all values set correctly, if the values selected previously…
.NET MAUI
While releasing the build in iOS MAUI, app getting crash while opening the application
Exceptions occurs was Terminating app due to uncaught exception 'System.ArgumentNullException', reason: 'ArgumentNull_Generic Arg_ParamName_Name, provider (System.ArgumentNullException) at System.ThrowHelper.Throw(String ) at…
.NET MAUI
Why am I receiving warnings on my code, but it is still working.
namespace MauiApp1 { public partial class MainPage : ContentPage { int count = 0; public MainPage() { InitializeComponent(); } private void OnCounterClicked(object sender, EventArgs e) …
.NET MAUI
Flyout Navigation Improvements
Hi @Leon Lu (Shanghai Wicresoft Co,.Ltd.) I'm using this flyout Navigation. sample code from "Leak.zip" from end of: https://github.com/dotnet/maui/issues/23625 Questions: Can improve navigation beetween page 1 to page 2 to page 3 ? Can…
.NET MAUI
Looking to remove underline from Android Entry and Pickers in .NET Maui
I need to remove the underline in my .NET Maui application for entry and picker handlers. In addition to this, I need to set the background color to a custom color that I have. I have found ways to set the background color to transparent to remove the…
.NET MAUI
Seeing red dot sign on MAUI (explorer on resources) in .NET 9
I am seeing the red small sign on Resources folder in .NET MAUI (in .NET 9). I am working on the folder that is in a GitHub repository have a workflow open. How to resolve this problem.
.NET MAUI

How to read the data from the PDF Report.
Hello Team, I'm having a functionality in my application. where we need to upload the PDF in the application from we are having different values in the PDF, I Need to read all the data and populate in the entry fields. Will this be possible in the…