4,169 questions with Developer technologies | .NET | .NET MAUI tags
is there a path algorithm?
I am using .net android and I want to ask that is there any path algorithm? I have 3 line intersected I want to find a way from A to B and remove the other line
Developer technologies | .NET | .NET MAUI
Scrolling Issue on Tabbed Page in iOS When Adding Dynamic Labels
I am experiencing a scrolling issue on a tabbed page in iOS when dynamically adding labels. In most cases (approximately 8 out of 10 times), I am unable to scroll down after adding the labels. This issue occurs on both real and simulator devices. …
Developer technologies | .NET | .NET MAUI
color connverter
I have a converter public class SelectedAvatarMultiValueConverter : IMultiValueConverter { public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture) { if(values.Length == 2 && …
Developer technologies | .NET | .NET MAUI
Alert header not seen well
Hi, After installing the app as exe in windows .NET 9, the alert header go to right and button change order. bool answer = await Application.Current.MainPage.DisplayAlert("Format USB", "Are you sure you want to format the USB…
Developer technologies | .NET | .NET MAUI
Conectar o Windows ao meu dispositivo Mac
Olá, Após atualizar para a versão mais recente do Visual Studio, estou encontrando um erro e não consigo conectar o Windows ao meu dispositivo Mac. O MSBuild não conseguiu se conectar ao Mac com Endereço='xx.xxx.xx.xxx' e Usuário='xx.xxx'. Esta conexão é…
Developer technologies | .NET | .NET MAUI

.NET MAUI - .NET9 - ERROR: XAPRAS7004 / NU1101 Unable to find package Microsoft.NETCore.App.Runtime.linux-bionic-x86.
Hello, I've been trying for a few months to solve a problem with .NET MAUI on .NET 9, I've tried to look everywhere, mainly on GITHUB but when I try the solutions that other devs have found, I have the feeling that it doesn't work on my side since I…
Developer technologies | .NET | .NET MAUI
Empty Carousel view
I'm developing a MAUI application and encountering an issue with the CarouselView control. The indicators in the CarouselView appear correctly according to the number of items in my ObservableCollection<string> which contains the filenames of my…
Developer technologies | .NET | .NET MAUI
start foreground service not be called in .net android?
I am using .net android and I want to create foreground service. but it not be called. in OnCreate StartForegroundService(new Intent(this, typeof(XyOpService))); public class XyOpService : Service { public override Android.OS.IBinder? OnBind(Intent?…
Developer technologies | .NET | .NET MAUI
how to start a foreground service in .net android?
I am using .net android and I am using media projection to capture screen I find that it is very slow when I minimize my APP so I want to ask that how to create a foreground service so I can run it not slow. .
Developer technologies | .NET | .NET MAUI
How do I recover from .net maui error NU1105 ... The property PackageVersion was expected to have a single value across all target frameworks, but instead...
This happened after I upgraded Microsoft.Maui.Controls from 9.0.70 to 9.0.81 using the NuGet Package Manager. Full error message: NU1105 Unable to read project information for '<MyProject>': The property PackageVersion was expected to have a single…
Developer technologies | .NET | .NET MAUI
.net Maui, viewModel alternative to OnAppearing
I notice that in .net MAUI OnAppearing doesn;t work. I need to find a way to open up a "DisplayAlert" as soon as the app appears and it must be triggered from the ViewModel. Thank you in advanced.
Developer technologies | .NET | .NET MAUI
APT2144 invalid file path
VS 2022 Preview... Trying to build and run "Notes" tutorial getting 2 APT2144 invalid file path error in file Xamarin.Android.Aapt2.targets. Error message gives a file path, which I can find using File Explorer. Help on error message says it…
Developer technologies | .NET | .NET MAUI
Hello, After updating to the latest version of Visual Studio, I am encountering an error and am unable to connect Windows to my Mac device. MSBuild was unable to connect to the Mac with Address=‘xx.xxx.xx.xxx’ and User=‘MacDeviceBh’. This connection is
Hello, After updating to the latest version of Visual Studio, I am encountering an error and am unable to connect Windows to my Mac device. MSBuild was unable to connect to the Mac with Address=‘xx.xxx.xx.xxx’ and User=‘MacDeviceBh’. This connection is…
Developer technologies | .NET | .NET MAUI
why I can not request permission of manage_external_storage?
i am using .net android and if I requestPermission of manage_external_storage it will call OnRequestPermissionsResult with grantResults =- 1 why?
Developer technologies | .NET | .NET MAUI
Publishing a .NET MAUI app fails with error message "You must include a valid app package manifest file named AppxManifest.xml in the source."
I'm trying to publish a .NET MAUI app. The source code contains a "Package.appxmanifest" file. When I try to publish, it fails with the following error messages: You must include a valid app package manifest file named AppxManifest.xml in…
Developer technologies | .NET | .NET MAUI
Maui project not build after added this plugin "Plugin.Firebase.Analytics"
Maui project not build after added this plugin "Plugin.Firebase.Analytics" Create New Project -> Update All Packages -> Add "Plugin.Firebase.Analytics" NuGet package -> After clean Project -> Rebuild the project and it'…
Developer technologies | .NET | .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; …
Developer technologies | .NET | .NET MAUI
The RuntimeIdentifier platform 'iossimulator-x64' and the PlatformTarget 'arm64' must be compatible
Hello, I am encountering the following error when running the application on my MacBook. However, when I connect the MacBook to a Windows laptop and run it from there, it works fine. The issue only occurs when I try to run the application directly on…
Developer technologies | .NET | .NET MAUI
How to visit the views of carouselview different item ?
webview will display embed youtube video I need user webview.EvaluateJavaScriptAsync to control the video. Then, how can i visit the webview of different items ? <CarouselView Grid.Row="2" x:Name="cView"…
Developer technologies | .NET | .NET MAUI
Which control needs to be used to show loading image for Images.
I'm working with large size images, that will take good amount of time to load the image, So for that thing i want show a dummy image like FFimage loading until the actual image loads, So which control will you suggest for this requirement, I tried with…