4,153 questions with Developer technologies | .NET | .NET MAUI tags
Startup problem
I Have a problem on desktops, where the Cloud image (Witch is my image in the auth page) appears very big for 1 millisecond Shell <Shell x:Class="SnapLabel.AppShell" xmlns="http://schemas.microsoft.com/dotnet/2021/maui" …
Developer technologies | .NET | .NET MAUI
how to ratate matrix ?
I have matrix and I want to rotate it. what I am doint is according matrix to paint something,and this is my matrix : bool[,] matrix; if one point(x,y) is true then I will draw the pixel otherwise not. I want to rotate it by 90degree,180…
Developer technologies | .NET | .NET MAUI
Is it possible in .net Maui to get access to the current binding for a bindableproperty?
I want to be able to access the binding for a bindable property not the bound value the BindingBase that was created that controls the binding process. Specifically I want to get the path that was specified when the binding was created (usually in…
Developer technologies | .NET | .NET MAUI
can not read assets file in ios in maui?
there is AboutAssetx.txt and font1.ttf with same code i can read AboutAssets.txt but can not read font1.ttf and all set to MauiAsset and were in Raw folder why? in android I can read it. I use FileSystem.OpenAppPackageFileAsync
Developer technologies | .NET | .NET MAUI
MSIX installation fails on some PCs with 0x80070005 when UAC is enabled – how to install MSIX as administrator?
Hi, I have a .NET MAUI Windows app packaged as an MSIX. On several PCs the MSIX installs without any issues. But on some machines—especially where UAC is enabled—the installation fails with the following error: App installation failed with error…
Developer technologies | .NET | .NET MAUI
MAUI: Issue with displaying Flyout menu page
My app’s home page is a FlyoutPage. The Flyout part is my menu. The Detail part is a DashboardTabPage, which has three child tabs. The problem I’m facing is this: When I open the menu for the first time, it works fine. But after I close it, if I try…
Developer technologies | .NET | .NET MAUI
MAUI: Issue with displaying Flyout menu page
My home page is a FlyoutPage with Flyout as menu and Detail as DashboardTabPage. There are 3 children in DashboardTabPage and the last tab is menu. If I tap on menu once, the menu will open from left and if tap outside it hides. My problem is If I open…
Developer technologies | .NET | .NET MAUI
How to use SelectedIndexChanged or CommandParameter with CommunityToolkit.Mvvm
I am using CommunityToolkit.Mvvm with ObservableObject and ObservableProperty. In the MVVM pattern, how can I trigger the SelectedIndexChanged event for a Picker when an item is selected, or handle changes in an Entry when typing into the textbox? …
Developer technologies | .NET | .NET MAUI
Error NETSDK1112: The runtime pack for Microsoft.NETCore.App.Runtime.win-x64 was not downloaded when building MAUI Windows app
Hi everyone, I have a .NET MAUI project configured as follows in my .csproj: <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) ==…
Developer technologies | .NET | .NET MAUI
how to load image and read the pixel of it?
I am using .net maui and I want to load image or capture picture and then read the pixel of it how to do it?
Developer technologies | .NET | .NET MAUI
How can I install an old Visual Studio Community version?
I want to install Visual Studio Community version 17.14.14 instead of the current version 17.14.19. I have already uninstalled all other Visual Studio versions. How can I install Visual Studio Community version 17.14.14? I have downloaded the VS 17.14.14…
Developer technologies | .NET | .NET MAUI
iOS crash report: System_Runtime_CompilerServices_AsyncMethodBuilderCore_Start_TStateMachine_GSHAREDVT_TStateMachine_GSHAREDVT_
I have uploaded my iOS build on TestFlight and then installed it on my iPad. My game always crashes 1-2 seconds after I opened it on my iPad. It only crashes in release mode and not in debug mode. It's not the first time that I have this kind of crash.…
Developer technologies | .NET | .NET MAUI
The SDK Microsoft.NET.sdk specified could not be found.
I get this error when I try to create a new project in Visual Studio Community 2022 (64-bit) 17.14.19: The SDK Microsoft.NET.sdk specified could not be found. In addition, when I try to open an existing solution in VS Community 2022 then my iOS and…
Developer technologies | .NET | .NET MAUI
What should I change in my Android .csproj file before uploading it to Google Play?
I created a new Android project in VS Insiders and I added my files from my old VS 2022 Android project to the new project. But I have not changed my new .csproj file. My new .csproj file in VS Insiders looks like this and debugging on my Android device…
Developer technologies | .NET | .NET MAUI
SCREEN UTILIZATION
I am developing an Android application using NET MAUI 10 with VS 2026. I notice that professional Android applications have two possible approaches with reference to the bottom bar (that contains the back, home and overview buttons), namely: This bar…
Developer technologies | .NET | .NET MAUI
Latest Windows 11 update has broken my MAUI .Net 8 projects
Nine days ago on Oct 14th I was able to successfully and consistently build my MAUI .Net 8 projects using Visual Studio Community. Microsoft installed an update on Oct 15th. Since then, I have not been able to build my application on any platform (iOS,…
Developer technologies | .NET | .NET MAUI
how to load gif and read pixels of it?
I want to load gif to Image and when I tapped on it I can read the pixel of it and read the frame of it . should I copy the gif to Raw folder or Images folder? and how to read the pixel of it? I am using .net MAUI 9.0
Developer technologies | .NET | .NET MAUI
APPX0101 error when packaging a WinUI MAUI app even though Azure Key Vault signing is configured
I have a WinUI app and I am trying to configure package signing with a certificate in our Azure Key Vault. I right-clicked the project, selected "Package and Publish" and picked a certificate from our Azure Key Vault. I know signing works in…
Azure Key Vault
Windows development | Windows App SDK
Developer technologies | .NET | .NET MAUI
BACK BUTTON VS NET 10
Platform: Android With NET MAUI 9.0, pressing the 'hardware' Back Button generates the following events: When the current page is MainPage: OnSleep Android – OnStop Android – OnDestroy shut down the app When the current page is any other page: Go…
Developer technologies | .NET | .NET MAUI
MAUI: Unknown white circle on the UI when tap on Login Button.
I have a login page its xaml added below: <?xml version="1.0" encoding="UTF-8"?> <views:BaseContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" …