MAUI Windows Fullscreen
I am trying to make a kiosk app for windows 10 x64 tablets and some android tablets in the future. I used this code in MauiProgram.cs: #if WINDOWS builder.ConfigureLifecycleEvents(events => { …
How to fix DEP0900: Failed to unregister application
I successfully updated a maui app to net9. The upgrade consisted of simply changing the net8 references in the csproj file. The app ran well but noticed some new control issues. Tried to downgrade the app back to net8 by changing the csproj references…
Double tapping Editor control locks app when deployed to iOS
Double tapping the Editor locks the app when deployed to iOS. This occurs for both net 8 and 9. Entry control works well and does not lock up the app. I added Editor and Entry controls to the demo Maui app as below. Am I missing a setting? Any known…
Application hangs while adding huge amount of data to the expander
in our application when we are creating the UI dynamically, So Initially I had created the expander headers, when ever I tap on the expander I'll prepare UI and add that content to the expander. So, I had prepared that UI that UI consists approx 140…
Google Play InAppBilling Error: "This version of the application is not configured for billing through Google Play"
I'm working on a .NET MAUI application where users can purchase subscriptions through Google Play and the App Store. I'm using the InAppBilling plugin for handling in-app purchases. It works smoothly on most devices, but on some Android devices, I'm…
FlyoutContent can not use page instead?
<Shell.FlyoutContent> <local:MyPage /> </Shell.FlyoutContent> it is not work.
I get the error 'Platform' does not contain a definition for 'Init' in Microsoft.Maui.ApplicationModel.Platform.Init(this, bundle);
I get the following error after updating my NuGet packages: 'Platform' does not contain a definition for 'Init' Activity1.cs: protected override void OnCreate(Bundle bundle) { AndroidX.Core.SplashScreen.SplashScreen.InstallSplashScreen(this); …
Google Play InAppBilling Error: "This version of the application is not configured for billing through Google Play"
I'm working on a .NET MAUI application where users can purchase subscriptions through Google Play and the App Store. I'm using the InAppBilling plugin for handling in-app purchases. It works smoothly on most devices, but on some Android devices, I'm…
HTML Page for Intersecting lines with 4 textboxes for MAUI Blazor App
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Vertical Angles with…
Application is Crashing when opening the collection view in iOS 18 (if the collection is having grouping)
I can able to see this the App center. When ever we are working without grouping the collectionview is working fine. The production application is working fine, without any code changes in our application the collectionview is started crashing when…
how to get pixel of Image?
Can I get pixels of Image? var image=new Image(){Source="xxx.png}; can I get the pixels? like what in winform image.GetPixel?
Custom fonts not working when uploading Maui Android project to Play Store
I have added custom fonts in the font directory of my Maui project's Resources directory and updated the MauiProgram.cs file accordingly. The fonts work fine when I deploy the application using Visual Studio, but when I publish the app and upload it to…
Cannot deploy Maui .NET 9 demo app to iOS simulator
Getting 12 errors when deploying Maui .NET 9 demo app to iOS simulator. Any ideas what the issue is?
Can the .NET Maui documentation on "hot restart" ever be corrected?
The documentation at https://learn.microsoft.com/en-us/dotnet/maui/ios/hot-restart?view=net-maui-9.0 needs to be corrected (they are also wrong for .NET 8). Keys are found by selecting Users and Access and then the Integrations tab. I wasted way too…
how to remove splash screen in maui?
How to remove Splash Screen? I do not want to use it just to remove it.
how to get pixel R g B in canvas in MAUI?
How to get pixel in the canvas? I fill rectangle and I want to know the color of the (x,y) pixel.
How to get the element's position of its parent element on iOS or Mac?
<ScrollView> <Grid WidthRequest="500" HeightRequest="500" x:Name="TheGrid" BackgroundColor="Blue"> <Frame x:Name="TheView" HorizontalOptions="End"…
maui do not support ios bluetooth?
in this doc: https://learn.microsoft.com/en-us/dotnet/maui/platform-integration/appmodel/permissions?view=net-maui-8.0&tabs=macios could not I use bluetooth in ios?
Starting app
I guess that because .Net 9 define the main Page as deprecated, we get errors, now I cannot run my app errors Severity Code Description Project File Line Suppression State Details Error (active) CS1061 'App' does not contain a definition for…
after updating,Microsoft.Maui.Controls - 8.0.0-rc.1.9171 to 8.0.93 , facing error at 'MauiUIApplicationDelegate' as CS0246: The type or namespace name ‘MauiUIApplicationDelegate’ could not be found (are you missing a using directive or an assembly refer
the code is : [Register(nameof(AppDelegate))] public class AppDelegate : MauiUIApplicationDelegate Any clue for this ? Thanks for your help Steps to Reproduce __once you update Microsoft.Maui.Controls and Microsoft.Maui.Controls.compatibility -…