Content
Entry field control is covered by keyboard
Hello, I have a view with 4 Entry controls, when I try to type inside the control, the keyboard will cover the Entry field. is there any way to shift up the control to be above the keyboard?


How do I fix APT206 - failed linking file resources and APT2259 'textEnd' is incompatible with attribute iconGravity errors?
I have a Xamarin Forms application that I am migrating to MAUI and I am getting the following 2 errors during compilation. APT2259 'textEnd' is incompatible with attribute iconGravity (attr) flags [start=1, textStart=2]. APT2061 failed linking file…


OnNavigatedTo For ContentView
Hi, What is the alternative to OnNavigatedTo in the ContentView? Thanks, Jassim


How to Open Files on Xamarin Android Using FilePicker
using Xamarin.Essentials; (at the top of the file) async Task<FileResult> PickAndShow(PickOptions options) { try { var result = await FilePicker.PickAsync(options); if (result != null) { string Text…


DataTrigger if Else case
Hi, I have an Image that I want to show and hide based on a Label like this: <Image.Triggers> <DataTrigger TargetType="Image" Binding="{Binding Source={x:Reference LabelNickname}, Path=Text}" Value="Add"> …


How to enhance Azure AD B2C Samples to Accommodate Azure API Management (APIM)?
Background: I've been studying https://learn.microsoft.com/en-us/answers/questions/1185611/where-are-net-7-updates-to-azure-active-directory and https://learn.microsoft.com/en-us/azure/api-management/howto-protect-backend-frontend-azure-ad-b2c where the…


Conditional MainPage in AppShell
Hi, I have the below in my AppShell <?xml version="1.0" encoding="utf-8" ?> <Shell x:Class="MyApp.Mobile.AppShell" xmlns="http://schemas.microsoft.com/dotnet/2021/maui" …


Database Permissions issue on Account model
I have an MVC site with the Individual User Accounts. On most of the site we use SPROCS instead of using Entity Framework. We recently changed the user account on the connection strings to lock our databases down a bit more. I am needing to set…
How do I dynamically replace value in razor syntax based on selectedIndex in dropdown
I have an CSHTML View that has a dropdownlist. In the OnChange event I'm calling reportchange(this) which calls my function reportchange. How can I dynamically use the selectedIndex, this code doesn't work because the Razor code errors out with the…
Trying to make a post request
I am trying to register a user in here https://reqres.in/api/register USING https://reqres.in/ public async Task RegisterAsync(string _userName, string _paaWoed) { var data = new { email = _userName, password = _paaWoed }; …


I have a listview with a groupheader which displays the group name and items underneath it. Is there anyway On click on the header/Group name I can show or hide the items underneath it?
For example : On click of the "Bear" I can show /hide the items


using custom font inside C# .net core application
I have the following code in my C# application that coverts text to image. In this code, I am using a custom font. I am specifying the path of the custom font, the custom font resides in my wwwroot folder. below is the code where I am using custom…


How to display and hide drop down lists based on condition drop down list ?
I work on blazor server side I have drop down list condition have 3 option server and database and owner . every option from these three options have one drop down list only so server have drop down list database have drop down list owner have drop down…


MAUI fails to deploy Android app
buildoutput.pdf Hi, Ia m trying to deploy my MAUI Android app to my device but keep getting Build Failed and not sure what is the reason. Attached is the build log.. Kindly help.. Thanks, Jassim


Access Control
Good morning, I am working on a .NET Core 6, SQL Server project and I need some idea of how to implement permissions by fields, let me explain: in a form, for example, that has [Name, Surname, Date, Address, Gender] to be able to assign in an access…


Service fabric application project not crated properly
Hi I need to set up service fabric for Uni project, and I run into an issue I will try to explain as clearly because I am not sure where does the problem come from: When I create Service Fabric Application project, VS2022 creates only Service Fabric…


Reuse the List<>
Hi, I am using the below code in my sign in page: List<SigninData> data = JsonSerializer.Deserialize<List<SigninData>>(result); also I am using this: List<ActivationData> data =…


The type or namespace name 'Platform' does not exist in the namespace 'Microsoft.Maui.Graphics' (are you missing an assembly reference?)
I am using Visual Studio Community 2022 64 bit 4.8.04161 on Windows 11 Pro. I need to be able to draw an image at a particular location. I am attempting to use the documentation at…


The MAUI GraphicsViewDemos image draw causes iOS app to abort
The GraphicsViewDemos app found at https://github.com/dotnet/maui-samples/tree/main/6.0/UserInterface/Views/GraphicsViewDemos aborts on iOS when the "Image paint" option is selected.


Which is best, entity framework core in a class library, MVC or Blazor server side
HI, I am planning to create an MVC project. I wanted to use entity framework core. I am wondering if I should install it in a class library or an MVC project. I see that I can use a class library to make the use of EF more available for any…

