Issue Populating CollectionView with ObservableCollection in .NET MAUI
Hi, I am facing an issue in my .NET MAUI application where I am trying to populate a CollectionView using an ObservableCollection<LeaveSummary> in my ViewModel. The data is correctly fetched, and I can see the ObservableCollection.Count in a Label,…
How can I optimize a React-based recruitment website for Bing SEO and ensure proper indexing?
Optimizing a React-based recruitment website for Bing SEO presents unique challenges due to how search engines process JavaScript-rendered content. Here’s a step-by-step approach to ensure Skiltrak’s website (or any React site) is properly indexed and…
Knowledge check page is missing the submit button
https://learn.microsoft.com/zh-cn/training/modules/csharp-call-methods/7-knowledge-check Despite my attempt to close the browser and reopen the page, I still cannot see the submit button, and my course cannot be completed
Android app nowgetting "requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified" crash
I have a Visual Studio 2022 Xamarin Android app (I know it's now unsupported) that has worked fine for many years. It uses NuGet packages for Firebase, etc. After November 4 (probably the Firebase November 15 release), when the app is in the…
How can I generate a parameter using switch against a datatype choice parameter with dotnet new templates?
While creating a template for dotnet new <template>, one of the required parameters is of datatype "choice". I am trying to then have a generated parameter with the generator of "switch" based on the choice parameter. When using…
.Net 8.0.10 and 8.0.11 hosting bundle doesn't install components
I have downloaded and installed the .NET Core Hosting bundle for 8.0.10 on the windows sever 2019. In the past when installing this bundle it will install the following components: Microsoft .NET Runtime - version (x64) Microsoft .NET Runtime - version…
Unable to do Production Build for iOS on Visual Studio
Whenever we try to build, we get the following error. The certificate 'Apple Distribution:… does not match … However the certificate exists on both the Windows Build Machine and the Mac Agent. This then results in the following error. C:\Program…
I need help with the NET. i can't fix it no matter what I have done.
I have followed the install progress and I cannot get the NET.installed or quit getting errors, Please help? I am using the quicken Medical Expense
flipping card update
I create a live tile using System.Diagnostics; namespace LiveTileControl.Controls; public partial class LiveTileControl : ContentView { private bool _isFlipping; public LiveTileControl() { InitializeComponent(); …
flayout navigation - how to deal with rasing memory?
Hi, I used flayout navigation. when navigate beween pages it consume alot of memory. In net 8. Not relase the previous page. Does to use GC.Collect()? Is allowed ? Thanks, public void Navigate(string navigateTo) { if (navigateTo ==…
Observable Collection OnPropertyChanged Performance Issue
While Updating Values to Observable Collection, OnPropertyChanged() takes a lot of time to load and render in UI. Because of this it's takes around a minute to update the list and taking lot of time for updating if few more list updating at the same…
Maui Performance Issue while set Application.Current.Mainpage as My CustomPage
In Maui, when we set MainPage using Application.Current.MainPage right? there while I set my custompage as MainPage its take around 15 to 30 seconds to initialize page in UI part, apart from the loading custompage code for example: …
How to fix a cryptographic keys error
I have recently upgraded the my web app to .Net9. I am now getting this error message from a call to CosmosDB to get a specific record... System.Security.Cryptography.CryptographicException: The key {92c2f09a-14ff-4cea-8f15-e09dcec74987} was not found in…
Cannot parse "7,345.55" to 7344.55 maui blazor
I am not able parse Close value example close has "7,324.55" its is giving as 4550. string clsd = columns[8].Replace("\"", ""); bool isCloseParsed = false; var close = 0.0f; if…
How to create Excel file with Visual Studio 2022 and C#
I'm working with Visual Studio 2022, Project WPF C# with .Net 6.0 and Entity Framework Core. DataBase MS SQL Express.I have also a valid and active licence Microsoft Office 365. I try to Create an Excel File but I have different error msg (see…
how to disable AOT in Maui
how to disable AOT in Maui My MauiApp runs ONLY in 'debug' mode! According to the .net, VS, Maui community I found many recommendations to disable AOT. Although, I never got an error msg to this direction! In .csproj I tested with 'all' combinations…
I have a scenario where I need to read/write from the primary database for normal operations but for some operations I need to read from an alternate server (a replication target that's read only that we use for reporting). With the way the new Core API
public class ReadOnlyContext : BaseDbContext { public ReadOnlyContext(ITenantInfo currentTenant, DbContextOptions<ReadOnlyContext> options, ICurrentUser currentUser, ISerializerService serializer, IOptions<DatabaseSettings> dbSettings,…
Entra ID integration in .NET Maui App
For the 3 separate cross platform apps (.NET Maui) with 2 of them having the need for passwordless authentication and one need to have email password with MFA authentication. Can I integrate authentication in mobile apps without Browser by using the…
Excel is not visible for Android
Hello, I have created a test project to show Excel using web view. Here is the GitHub URL TestWebVeiw. I am trying to open the Excel file using WebView. The Excel is visible on the iPhone, but it shows a blank page when I try to run it on Android. I…
how to translate matrix in .net.android?
I want to use canvas in .net.android and want to draw cube on it. I create custom view and rewrite ondraw how to draw one cube using canvas? if there is x,y,z and width height how to draw it?