App Services - Web App (Linux Container) - Connection strings not working
I have a .NET 8 API that I have deployed to Azure App Services - It is a Web App (Linux Container). The API endpoints work except for endpoint that involve a database call. Swagger shows up as expected (as I have configured the app in development mode).…
After migrating to VB.NET Core 9.0 from 8.0, I am getting error messages on menu bindings
After migrating from version 8.0 to version 9.0, I am getting error messages related to the binding of menu items. I am working with Visual Studio 17.12.3 and .NET Core 9.0.101 on a Windows 11 (23H2) machine. Further down in the XAML code, I have the…
How to Pass Parameters in Blazor
Hi, how can I use something like CommandParameter in Xamarin, but in Blazor for example: <div x-index="3" y-index="2"/> Then access them programmaticaly in C#. Thanks in advance
How to Increase TabbedPage Tab Title Font Size in .NET MAUI?
Hi, I am working on a .NET MAUI application and using a TabbedPage for navigation. I want to increase the font size of the tab titles on the TabBar. Here is the XAML code for my TabbedPage: <?xml version="1.0" encoding="utf-8"…
.NET MAUI Not Properly Recognizing iOS Provisioning Profiles, Even Those Created Minutes Prior
To all: I've been trying to port an app I wrote last summer in Xamarin Forms over to the latest version of .NET MAUI. I had few issues (but not none) with the Android version, but - as usual - iOS is so arcane that either Microsoft's engineers are…
ASP.NET Web Core with .NET Core 7.0 Error While Generating Scaffolding
In an ASP.NET core project built on .NET Core 7.0 I am trying to scaffold the login page with the following steps: I right click on the project, and select Add -> New Scaffolded Item I select Identity and Click on Add Then I choose…
Why are the new keyboard types in .net maui 9 such as Date not recognized in xaml
I upgraded to VS 2022 17.12.9 and made changes for .NET 9. When I try to set any of the new .NET MAUI keyboard types for .NET 9 (Password, Date, Time) in XAML, they are not recognized. Is there some other update I need to make? Thank you.
maps reload on internet change
I have an issue, where I have a page created <maps:Map x:Name="ChargingStationMap" ItemsSource="{x:Binding TurbinePins}" VerticalOptions="FillAndExpand"> <maps:Map.ItemTemplate> …
show an age when collectionview is done
I have a page, that everything gets the data by binding <Grid RowDefinitions="Auto,Auto,*,*" RowSpacing="5"> <ActivityIndicator HorizontalOptions="CenterAndExpand" …
tile bar and flyout
I am calling the Maui connectivity in the App Shell View model public partial class AppShellViewModel: ObservableObject, IPinClickHandler { private AppShell? _shell; private readonly IServiceProvider _serviceProvider; private…
Submit blazor component data to controller mvc
Hi There, I am trying to integrate blazor with MVC and use Razor Component in MVC. In that I need to send/post data from razor component form to controller in MVC on click of a button click. Similar to what we use to do in ASP.Net mvc. @using…
Submit blazor component data to controller mvc
Hi There, I am trying to integrate blazor with MVC and use Razor Component in MVC. In that I need to send/post data from razor component form to controller in MVC on click of a button click. Similar to what we use to do in ASP.Net mvc. @using…
Version 4.8.03761 to Version 4.8.04084
I need to have version 4.8.04084 but I have 4.8.03761 I don't see where I can download this other then 4.8 download.
Using Business Logic Classes in C# with .NET MAUI
What are the best practices for creating business logic classes in C# for a bank application? Specifically, how do business logic classes interact with data access classes, and how can expression-bodied members be utilized in this context?
How to use OpenXML SDK in a vb.net project to change custom properties of .docx files?
I'm working on a vb.net project that is supposed to use OpenXML SDK to alter custom file properties of a .docx file. Once I have the document open as a 'WordprocessingDocument`, how do I access the custom file properties?
Popup appears behind other page contents
Hello, I was trying to create a pop-up that will pop up after the page finishes loading everything on it. But the popup and its contents hides behind, and the close (X) button does not respond. How can I make the popup appear in front and the close (x)…
Popup appears behind other page contents
Hello, I was trying to create a pop-up that will pop up after the page finishes loading everything on it. But the popup and its contents hides behind, and the close (X) button does not respond. How can I make the popup appear in front and the close (x)…
Should I bind navigation properties or entity ids in reusable components?
I am using Blazor with InteractiveServer at the applcation level and Radzen component library. I would like to create resuable components that fetch their own data for things like dropdowns. For example, I have a Request entity with the following…
WPF: Should a Class Unregister Its Own PropertyChanged Events?
Our WPF application targets .NET Framework 4.8. if a class register an event such as "this.PropertyChanged += OnPropertyChanged;", Is it the responsibility of this class to unregister it? Thx!
ASP.NET web site build error in VS2022 due to missing assembly reference
I am maintaining an ASP.NET Web site. It has many assemblies (and DLLs) in Bin folder. The web site project is legacy one without any project file. One of the DLLs is DLL that uses CLR. Even though the dll is there in bin folder, building web site…