Content
Maui view does not update Binding value correctly
Hi everyone, I am using VS2022 Version 17.7.0 to create a C# Maui app and class myself as a beginner. I have been following Youtube videos and have my MVVM design working (to a point so far). I have the CommunityToolkit.Maui and Community Toolkit.MVVM…
How to get the radio status dynamically created?
Radio groups are created dynamically,like: function add(){ str= "<td><input name='rd' value='aa' type='radio'></td>" + "<td><input name='rd' value='bb' type='radio'></td>" …
chinese characters not displayed correctively in aspnetcore 8 Bazor web app
I have upgraded my Blazor Server App to aspnetcore8. After the upgrade, Chinese characters not correctively displayed when you view page source. see attached screen shot It is greatly appreciated if someone can help to solve the problem!
Upgrading C# NET Core 7.0 to 8.0 in Visual Studio IDE - Guidance and Suggesgtions
The format of this isn't great. But, I was getting weird unintended markdown changes to the text I originally entered. This was an upgrade of a .NET Maui Project and the .NET Core 7.0 to 8.0. I am providing this post to see if we (or Microsoft) might be…
DateTime.Now returns UTC Time if we build Xamarin.Android app with azure pipeline.
Hi, Team, We have currently one project associated with Xamarin.Android. DateTime.Now returns UTC Time instead of returning local time only when we build Xamarin.Android app with azure pipeline. It is working fine if we create build using visual…
How to format razor pages in blazor in visual studio 2022
Hi, we are having problems with formatting after upgrade to visual studio 2022. In visual studio 2019 we could format our razor files pretty well, in visual studio it looks really bad. We cannot use 2019 anymore because of the .net 7.
MAUI - Hello World does not run on Emulator
I am following the documentation: https://dotnet.microsoft.com/en-us/learn/maui/first-app-tutorial/device-setup I created the simple Hello World for a .NET MAUI app. On my physical device it works, but not on emulators. I created an Android emulator for…
AWS Systems Manager not getting Credentials from Profile
Hello! I have two local projects that are setup similarly. Except the one that works is in .NET 7.0 and the new one that doesn't work is 8.0. I'm trying to setup the ability for my local dev environment to grab parameters from the AWS Parameter Store.…
How to enable Drag gesture on Android plateform with .net MAUI ?
Hello I made a simple MAUI c# project with an implementation of drag and drop in my MainPage https://github.com/pierre-yves-cmd/montestdd The sample work well on Windows Plateform but on Android, the drag gesture seem to be not triggered. When i use…
App Crashes while registering with Notification Hub under Release build, but not Debug
I created an app that uses Azure Push Notifications. I've been able to get it to run on a physical iPad without any problems under a debug build. But when I try to implement it under a release build, it crashes. My debugging skills indicate that the…
How can I get an open folder dialog in WPF?
I cannot find an OpenFolder dialog in WPF. I looked at the MS help, and it said to create a reference to Systems.Windows.Forms.dll. The only reference I could find is in the picture below. I added this to my WPF project. but when I tried to put in the…
Dot Net 8 Blazor Webassembly not able to handle datatype
@foreach (var schemeSearch in schemeSearchList) { <div class="v-pipe"> <span class="heading">Expense Ratio % </span> <p class="value12 mb-2">@(schemeSearch.ExpenseRatio != null ?…
Why is my web app is down with 503 after upgrading from .NET Core 6 to 8, with no errors in application insights or the log stream?
The site worked with .NET Core 6. I updated it to .NET Core 8, changed the configuration in the App Service to >NET Core 8 and....503 errors. I turned on logging and Application Insights. No errors are shown in the log stream on in the Application…

How to Monitoring and Navigating URLs in Blazor Maui with Social Authentication
I'm currently working on a Blazor Maui app using C# and integrating UAE Pass authentication. In my application, I need to monitor and navigate URLs within a Blazor page, such as Login.razor. I attempted to achieve this using an iframe, but encountered an…
.NET MAUI Hybrid Razor Template App Freezes on macOS
I am using the C# Dev Kit VS Code extension to create a .NET MAUI Blazor Hybrid Template app on macOS. I'm running XCode 14.2 and mac 12.7.1. When I create the template app and run it on VS Code with macOS set as my debug target, the build is successful,…
adding header (banner) image to webform
looking to add a banner to my webform using CSS i was able to add the background image using the code below. any help would be appreciated. <%@ Page Language="vb" AutoEventWireup="false" CodeBehind="WebForm2.aspx.vb"…
resource mipmap/myicon not found. How to fix this?
I have a VS 2019 Xamarin app. It had previously compiled OK and was distributable. The app's icon is poorly formed so I updated it. But now when I rebuild I get the icon changed in the Manifest to android:icon="@mipmap/myicon" and that…
What is the safest (least dependencies) to log startup in a Blazor app on Azure
Hi all; When my Blazor app first starts, before the ILogger system is initialized (or fails initialization), I want to be able to log four things: The very first line in main() - so I know the app started. About to call builder.Build() If there was a…


Is there a way to wait for a ManualResetEventSlim to be Reset()?
Hi all; The call ManualResetEventSlim.Wait() waits for the event to be set. I need the opposite, it has been set and I'm now waiting for it to be reset. Is there a way to do that? I can't flip my event object, it is used to process a queue of messages…


Templated control problems
I created a custom control public partial class TileControl : TemplatedView { public static readonly BindableProperty FooterTextProperty = BindableProperty.Create( nameof(HeaderText), typeof(string), typeof(TileControl), default(string)); …