BINDING DOES NOT RECOGNIZE TYPE
I have a custom component that exposes a property 'Amount64' of type Int64; I would like to bind it to a property 'Amount', also of type Int64, in the host page: <components:MyNumericKeyboard x:Name="keypad" Amount64="{Binding Amount,…
XML Xml Serialization error in MAUI iOS
Good afternoon. We are developing a mobile application for iOS on MAUI (.net 9-0). When using the Apple development profile, our application is assembled and deployed on the device without any problems (using the IDE Rider). But when we change the Apple…
System.NotSupportedException: The given path's format is not supported
I have a project that has been building and publishing successfully. However, after attempting to solve the iOS 18 white screen issue, a new error has started to appear, and I am unsure where to look to fix it. The following changes have been made since…
taking pctures
I have this method and works fine async Task TakePhoto() { var photo = await MediaPicker.Default.CapturePhotoAsync(); if (photo != null) { // Getting the file result information using Stream sourceStream =…
MAUI: Slider ThumbImageSource is not moving after disabling the slider to select lower time
Using this and this threads I implemented the slider reduction prevention logic on my MAUI application. My requirement is that after dragging the slider, the user should not be allowed to select a lower value. However, if they choose a higher value, it…
app broken help
The app is broken in release mode Thís is a video going thru everything https://reccloud.com/u/lvtemaz I don't know how to read the logcart there is a bunch of things I created another app, with a collectionview and I put it in release mode and works …
Change ToolBarItem text color in .NET MAUI
I want to change the textcolor of the ToolbarItem based on a binding but seems like .net maui does not have textcolor property to set the ToolbarItem text color. Is there a way I can change the text color in toolbar in maui?
.NET MAUI cannot find Android emulators on Mac OS 15
I recently updated Mac OS to Sequoia (15). After I opened my .NET MAUI project in VS Code and waited for all checks to finish, I selected ".NET MAUI: Pick Android Device" from Command Palette, but there was nothing for me to choose from. I have…
>net maui error cs1001 Identifer expected (net8.0)
I've trying to convert my Xamarin project to .Net Maui for the couple of months, I finally got all of the pages to compile (so Far I think) I'm only getting 4 error now, cs1001 Idenitfier expected MyProject (net8.0-android) App.xaml.sg.cs line…
I cannot go back
I am trying to go back when I press the back button public partial class AddNewTurbinePageViewModel(TurbinesService turbinesService, DeviceLanguageService deviceLanguageService, IFilePicker filePicker, IMediaPicker mediaPicker,…
What is the memory profiling tool available for Maui - Android app
Xamarin came with a memory / CPU tool as part of Visual studio. I noticed that this tool is no more part of Visual studio. I migrated my app to Maui, and would like to know what is the alternative to this profiling tool.
HOW TO GENERATE A TAPPED EVENT PROGRAMMATICALLY
Is it possible to "send" programmatically a Tapped event to a ContentPage? i.e. simulate that the user tapped somewhere. the platform is Android. In my ContentPage I set HideSoftInputOnTapped="True" There is an Entry: …
how to draw on textureview?
how to draw on textureview in .net android? https://learn.microsoft.com/en-us/answers/questions/2113199/how-to-use-textureview-in-net-android?page=1&orderby=helpful&comment=answer-1870509#newest-answer-comment here I know how to add texture view…
how to use textureView in .net android?
how to use texture view? first please createandroid application not xamarin not maui. then add code : <TextureView android:layout_width="match_parent" android:layout_height="@dimen/canvas_height" …
how to enable debug in release mode in MAUI mobile application
How can I enable debugging in release mode? Some functionalities are not working when I release the app, but they work in debug mode. I've tried multiple methods but haven't found a proper solution. Inside .csproj file <PropertyGroup…
Cannot Use RecyclerView in .NET Android MAUI
With the ended support of Xamarin, I am working on converting my Xamarin.Android app to .NET Android MAUI (my app is Android only). In my xml layout file(s), I am able to use androidx.recyclerview.widget.RecyclerView without any complaints from Visual…
Regenerating AndroidResource(s) For .NET for Android Using Visual Studio 2022
I am working on converting a Xamarin.Android app to .NET for Android. I have created an entirely new Solution & Project in Visual Studio 2022 & I used the Android Application Project Template. Visual Studio 2022 creates the following…
flipingm like a card
So I have two pages CollectionPage and newTurbinePage What, I want to do is to make this like a card the front part of the card will be the collectienPage <ContentPage x:Class="METROWIND.Views.TurbinesCollectionPage" …
Image Capturing from camera getting tilt to left 90 degree in MAUI
We have Implemented Photo capturing and choose photo from gallery and we also put one condition that if image size is greater that 512 KB then resize the image. And whenever the image size getting more that limit it is tilting to left by 90 degree. How I…
Command breaks
<mct:EventToCommandBehavior Command="{Binding ConfirmDateCommand, Source={x:RelativeSource AncestorType={x:Type vm:TurbinesCollectionPageViewModel}}}" CommandParameter="{Binding Source={x:Reference picker},…