Content
Is there any way to open pdf url in web view
Hi, I was trying to open pdf url in webview in .NET MAUI but it was showing blank screen. <WebView x:Name="web_view" Source="https://s29.q4cdn.com/175625835/files/doc_downloads/test.pdf" />
How to disable predictive back button icon for the maui android app
Hello. Please help to find a solution to disable the predictive back button icon for the MAUI android
How do determine which path format is invalid?
When I attempt to publish my Maui App and click "Publish" I get the cannot create an IOS archive because the process cannot be executed on XMA server - the "Unzip" task failed unexpectedly the given path's format is not…
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 ?…
Auto adjust panel
HI experts , I want to create a custom panel which when after dragging on form should auto adjust its width according to the width of the parent Form . Pls suggest how to do it .
How to implement both a user registration and log in in a blazor webassembly asp.net core 8 using Azure AA B2C
I have followed this guidance: Secure an ASP.NET Core Blazor WebAssembly standalone app with Azure Active Directory…
How to deploy MAUI app with ClickOnce method.
I'm trying to build and publish very simple hello world Maui application and deploy it with click Once method : https://learn.microsoft.com/en-us/visualstudio/deployment/clickonce-deployment-dotnet?view=vs-2022 I'm suing this command to build and…
Empty response in webapp
Hello, we have a .NET 7 webapp which often (more than 70% of cases) returns a blank page. In particular, the response content length is always 2470 bytes. Due to this content truncation, the response contains only a part of the HTML head and no body, and…
android:exported needs to be explicitly specified for element
I'm using an AndroidAltBeaconLibrary library When compiling, it modifies my mainfest.xml and puts some settings there: <receiver android:enabled="true" android:exported="false" /> When I try to copy I get the error: Error…
Switch Maui doesn't display the right OnColor and ThumbColor in .NET8
Hi team, I use <Switch IsToggled="True" OnColor="Green" ThumbColor="Red"> in .NET8 in VS 2022 v17.8.2 On Android, it always displays like image below even i change OnColor and ThumbColor I didn't check it on…
Does anyone have a code example of how to use the ActivityIndicator
I have several things in an app that happen on a control click. I have now spent most of today trying to find out how this works. The worst "docs" is Microsoft Learn as it's "example" has no relevance to actual things that happen.
Is System.IO.Ports currently only support on Windows(using MAUI build)
Hello, I'm trying to develop some application with serial communication function on mac and Windows using MS's .Net MAUI for cross platform development. The same code works windows like open/close a port, send data read data, everything works perfectly.…
Running Database-Update for EntityFrameworkCore returns A task was cancelled
I am trying to follow the Connect to and query Azure SQL Database using .NET and Entity Framework Core tutorial. When I try to run Update-Database from the Package Manager Console I get the following error: A task was canceled. I have provisioned the…
MAUI Firebase iOS not building
I am trying to implement and compile with Visual Studio 2022 in Windows 11 with push notifications in my MAUI application for both Android and iOS. I receive the following error when building: "Unable to copy file…
show total and grand total without postback
Hello This Is my sql data SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[Table_1]( [ID] [int] IDENTITY(1,1) NOT NULL, [Field1] [varchar](50) NULL, [Field2] [varchar](50) NULL, [Field3] [varchar](50)…
What do I describe code of UWP dll without imporoting solution by C++?
Hello! I use VS 2022. I'm leadrning UWP dll. I am describing test code of it. I have a problem. That code cannot refer UWP class,for example Text Box,out of solution of VS project. How to solve solve this problem?
How to Open Local PDF file in WebView in .NET MAUI
Hi I have created sample .NET MAUI app for display local pdf file. I have kept my kayprotect_training.pdf file in the Resources/Raw/folder and set build action of kayprotect_training.pdf is MauiAsset. after that I create a pdfjs folder in the…
multi filter not working without postback
Hello This is my aspx page <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <html> <head runat="server"> <script…
.NET MAUI: I want to fetch data from remote server even when the app is closed.
I have a mobile application which needs to download some data periodically from remote server. This should happen even when the application(android/ iOS) is not running in foreground or in background. Basically, I want the data to be downloaded from…
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)); …