Transition from 8 to 9 in maui not worked
Hi, Target: move maui app from .net 8 to .net 9 in Mac. Documentation: https://learn.microsoft.com/en-us/dotnet/maui/whats-new/dotnet-9?view=net-maui-9.0#upgrade-from-net-8-to-net-9 Problem:App not working without debugging. Steps: I did all steps in…
Error "400 Bad Request - Request Header Or Cookie Too Large" in ASP.NET MVC Application with AzureAD Authentication
Hello, We are experiencing an issue with our ASP.NET MVC application that involves multiple iframes. Each iframe embeds the same application, which may be hosted on different domains. Authentication within each iframe is performed using AzureAD. When the…
How to generate RDLC report using loop?
I asked a question about this earlier here. But not getting the correct solution, I again asked for the help of experienced people. I have shown a sample of my data below. I want to print this data on separate pages according to empid. I guess it can be…
Unable to Receive Push Notifications in .NET MAUI After Migrating from Xamarin with Azure Notification Hub and Firebase FCM
Hello I am in the process of migrating an application from Xamarin to .NET MAUI, and I am using .NET 8 for MAUI development. Previously, I used Azure Notification Hub in combination with Firebase FCM v1 token to send push notifications. Everything was…
Blazor Server (.NET 8) redirect fails after login
We have a Blazor Server app (.NET 8) that is hosted on IIS. Users access it by logging into Citrix with their Active Directory credentials, then into the app (with those same credentials). We use ASP.NET Identity to manage login. Both the end-users and…
Table border issue
Hi, What is wrong below? How to correct it?
How to load jquery autocomplete dropdown box from an external WEB API
Good day everybody: I have an external web api which returns a label, value records needed for a client application app.MapGet("/AsyncAutocompleteErf/{search}", async (IErvenRepository request, string search) => { var data = await…
dotnet maui updates
I asked a similar question before and received an answer that helped some. I have learned more and now have a related but new question about this topic. I update my Mac by downloading the latest DMG file from the dotnet download site and installing it. I…
Adding Blazor Identity to existing Blazer project fails with a 'null path' exception
Hi! I have the following: .Net SDK 9 Visual Studio Community 2022 v 17.12.3 Windows v10.0.19044 Blazer Server App When I try to add the Blazor Identity "scaffolding" I get a "There was an error running the selected code generator:…
MT5210 error when compile xamarin ios project to release
Hi, I wanna to integrate Sipsorcery into my Xamarin iOS app, everything works fine on the simulator. But when I try to compile the Xamarin sample project, I got some errors from VS on my…
Can't get address or phone from Microsoft Login
Hi all; I have a Blazor Server app using the Identity Library. I have added the following code and it works for login: var microsoftClientId = configMgr.GetValue("Authentication:Microsoft:ClientId"); var microsoftClientSecret =…
Hyper-V Manager Quick Create Fails with "Cannot load file or assembly Newtonsoft.Json"
Creating a new virtual machine using Hyper-V Manager in Windows 11 24H2 results in the following error message: Attempts to resolve the issue include removing and reinstalling Hyper-V and the .NET Frameworks, as well as running SFC /Scannow and DISM…
how to use my font in UIGraphics in MAUI?
.ConfigureFonts(fonts => { fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular"); fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold"); }); how to use this font in UIGraphics in ios? new…
Random behaviour of SelectedItem property of our custom TabItem / TabControl
Issue: Our application is built somewhat similiarly to a common web browsers, meaning that different user controls are grouped to Tabs, which can be created, switched between and closed. To do this we have created custom ClosableTab Item TabControl. It…
Microsoft.Maui.Controls - version
Hi, <PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" /> Should I need to specify the real version in net 9 ? Thanks,
Simplifying APK Update Process in MAUI App
I am looking for ways to simplify the update process for a private app Currently, I can download the APK of the new version from a database. However, once the APK is downloaded, I'm unsure how to use code to perform the update. It is not on the store.
How to display menu by NotifyIcon without displaying the form in Taskbar
I have a form with a NotifyIcon and a ContextMenuStrip and I want to display the menu by clicking on the notification, but unfortunately it is displayed in the taskbar. Why? I tried setting the ShowInTaskbar property to false, but it didn't work.Tip Only…
how to get the memory that my app taken in MAUI?
in MAUI how to get the memory that my APP taken in ios? my APP will be released when open another APP I think my APP take too many memory so the system GC it. now I want to confirm it
how to use .a file in .net ios?
I am using .net ios. what should I do next? I am not using xamarin.ios and maui. I am using .net ios.
How to hide the bottom TabbedPage tabs in .NET MAUI 8?
Actually I need to hide bottom tabs based on some condition. I tried using TabbedViewHandler and Reflection to hide the tabs by setting height of bototmbar LayoutParameters to 0. Tabs are not visible, but blank space is showing up in space of tabs. I…