4,172 questions with Developer technologies | .NET | .NET MAUI tags
Net maui Net 8 how to create Borderless Entry, Editor and Picker handlers
Net maui Net 8 how to create Borderless Entry, Editor and Picker handlers (all platforms) samples.. can you help thanks..
Developer technologies | .NET | .NET MAUI

Why does MAUI App Have A Toolbar Visible, and how do I get rid of it?
I created my first MAUI project, took a while to figure out how to get rid of Android, IOS and Mac, but got that working. Then I get the app to run, and this toolbar appears. Is there an option to not show this toolbar? It's in the way and not at all…
Developer technologies | .NET | .NET MAUI
Developer technologies | C#
How to change the ios bundle id in vscode for maui
In Visual Studio, Xamarin Forms apps the Bundle Id is changed by opening the info.plist file and selecting the Application dropdown. The Bundle Id is on that page to change. I need to know how to do the same thing in vscode using the vscode maui…
Developer technologies | .NET | .NET MAUI
How can I make overlapping shapes clickable
Hi, had this problem from time to time since I work with apps for kids. I want to make irraguated shapes that might overlap each others clickable like in this simple example image. How would you do that in .Net Maui? Hope the problem was understandable? …
Developer technologies | .NET | .NET MAUI
Maui for android pinch gesture container issue
Hello All. I use Ver 17.10 preview 1 and Android Ver 34. I try to add Pinch Gesture Container and I get an error message. As below: What I miss. Please any help. Thank you. //Error I get //MainPage.xaml : XamlC error : Failed to resolve assembly:…
Developer technologies | .NET | .NET MAUI
Customize the close/minimize/maximize location
Hi, I tested n it not worked on this link: Can you please check with sample code in the end of in this link: https://github.com/dotnet/maui/issues/21007 I added this code in login page and MyRootPage and is not worked. // override the method of the page…
Developer technologies | .NET | .NET MAUI
ButtonRenderer iOS (PKPaymentButton) crashing for the NaN size error
I'm migrating XF app to MAUI. XF has Apple pay function and has the iOS native Apple pay button. XF app works fine. The below codes bring the error like below. I can tell it's just MAUI does not set the With and Height properly and throw this error.…
Developer technologies | .NET | .NET MAUI
How to decrease Splash screen time in .net maui? Or How to Remove/Disable Splash Screen in .net maui?
I want to reduce .net maui app splash screen duration, How can i do that. If not possible then give me a way to remove or disable app by default splash screen Completely and i will add custom splash screen.
Developer technologies | .NET | .NET MAUI
.NET MAUI PLUGIN FOR CAMERA SHOT HDR
Good morning, I should develop an application that allows me to take multiple shots in HDR and then be able to combine them into a single photo. Do you know any plugins to use in .net MAUI? Thank you
Developer technologies | .NET | .NET MAUI
MAUI .net 8 app can't get past splash screen on Android
Hi I am trying to run a new .net MAUI project on Android, it doesn't get past the splash screen and is stuck there. how to fix this?
Developer technologies | .NET | .NET MAUI
How to wait for a return value from executed JavaScript MAUI Android Threading
Hello all I want get "right Threading way" when I wait for a JavaScript's result inside android webview (unfortunately function EvaluateJavaScriptAsync doesn't work :-(, cause I have own handler – need both directions from and to Javascript-C#…
Developer technologies | .NET | .NET MAUI
Performance Issue with CollectionView in .NET MAUI
Hello, I am experiencing slow performance issues with .NET MAUI's CollectionView on Android. I am using .NET 7 with VS 17.6.5 I suspect the issue may be related to the use of controls within CollectionView.ItemTemplate. Please help me find a…
Developer technologies | .NET | .NET MAUI
how to get imeid or device id in android in maui?
can I get the device Id or IMEID scene is there is many devices and I want to sign them and I have to write something in each device?
Developer technologies | .NET | .NET MAUI
Busy indicator is not visible in windows - Maui
Hello, I'm doing the UI operation, I want to display the busy indicator, I had added in the below way. try { var expander = sender as Expander; var headerText = (expander.Header as Border)?.Content is StackLayout headerStackLayout …
Developer technologies | .NET | .NET MAUI
Binding to command defined in viewmodel not working using CommunityToolkit.Maui
I have a MAUI app that I am using CommunityToolkit.Maui to implement the MVVM pattern. I have the XAML markup with the code-behind and a view model in which I define a set of methods attributed with [RelayCommand]. In the XAML, I am creating a label with…
Developer technologies | .NET | .NET MAUI
Developer technologies | XAML
Render a custom map pin based on a view not working on ios
MauiApp1.zip.log Hi, Hoping to get some assistance with this. I have implemented rendering of a custom pin based on a view in android ok but having issues with ios. I'm using the following code to get the view convert it into an image and then add it to…
Developer technologies | .NET | .NET MAUI
Unable to hit debug point in C# Library from Android MAUI .NET7 App
We have a MAUI .NET 7 UWP Application, from the MAUI App C# .NET 6 library is being called. Visual Studio 2022 IDE we are using for development. When it comes to Windows build, we are able to debug the C# library methods. However from Android, debugging…
Developer technologies | .NET | .NET MAUI
Listview item click is not working in android MAUI
I have a Listview and added a context actions in the listview. I am able see the context action after long press the list item and it is working fine. But the listview item click is not working in android. But it works in windows. Can anyone help me on…
Developer technologies | .NET | .NET MAUI
Close/minimize/maximize moved to left size
Hi, I moved to vs 17.8.4 .NET 8 and close/minimize/maximize of maui app moved to left size is by desin ?
Developer technologies | .NET | .NET MAUI
Relay Command doesn't get triggered.
I am making a ribbon like menu. For achieving, I created three basic components. Component Item Class Menu Template (XAML) Menu Template (Code Behind) The class define each item public class MenuComponentItems { public string ImageSource {…