Questions tagged [blazor-hybrid]
46 questions
6
votes
1 answer
Wrap an existing Blazor Web Assembly app into a .NET MAUI Hybrid App
I watched this tutorial on how to create a .NET MAUI Blazor App
https://www.youtube.com/watch?v=bnoCU5XGBh4
However I have an existing Blazor Web Assembly app, what is the best recommended way to wrap it into a BlazorWebView? I have dug around for…

User101
- 748
- 2
- 10
- 29
4
votes
0 answers
Azure.Data.Tables SDK Converting POCO objects to TableEntity and back
Trying to work out Azure.Data.Tables SDK but seem to only find 1 trillion examples using the depricated WindowsAzure SDK which no longer seem to work in the newer SDK.
Problem: I have a number of POCO entities which implement ITableEntity and have…

haPartnerships
- 335
- 1
- 2
- 13
4
votes
1 answer
How to access XAML page's BindingContext from within BlazorWebView control in .NET MAUI
The razor page is being hosted in the BlazorWebView control on the XAML page. I would like to be able to get to the view model I have assigned to the BindingContext of said XAML from within the razor page.
DaySummaryPage.XAML

AC Thompson
- 310
- 1
- 10
2
votes
0 answers
Can't configure CultureInfo for Blazor Hybrid on Windows platform
Blazor Hybrid for Windows platform keeps en-us for the culture. Therefore date pickers and numeric inputs can't be properly configured. Problem seems related to WebView2 which dev teams claims to have documentation about this but I fail to…

Pompoko
- 21
- 2
2
votes
1 answer
Adding a callback to a blazor hybrid in Windows Forms
I´m testing some functionality for seeing the possibilities of Blazor hosted inside a Windows Form application. The solution is the one in the documentation, the classic counter.
Now i´m trying to exchange data between the windows and the blazor…

Leonardo Perez
- 73
- 1
- 5
1
vote
2 answers
InputSelect with enum binding, how launching additionnal tasks?
I have an enum and a variable of the enum type as follows:
private enum Cities {Berlin, Madrid, Paris, Vienna}
private Cities City;
In the html I have a InputSelect component as follows:
@foreach(var city in…

Bert
- 87
- 1
- 6
1
vote
0 answers
How to implement sign-in with Azure AD in a Blazor Hybrid application?
I have made a Blazor Hybrid application in .NET 6 and am looking to implement authentication and authorization with Azure AD. I found an article by Microsoft on how to do it, but it says to
Follow the guidance for the identity provider that you've…

Lukas
- 1,699
- 1
- 16
- 49
1
vote
1 answer
Maui Blazor input dropdown list not accepting input value
I am using a searchable dropdown list to input values into a .net maui android app. The dropdown works but when the selection is made it is not entered into the input field. The issue seems to be sporadic sometimes working when the page is first…

RollinB
- 11
- 2
1
vote
1 answer
MAUI Blazor Hybrid Admob
I have a MAUI Blazor Hybrid mobile application and I want to add Admob ads.
I found a way to do so in XAML: https://www.mauiexpert.it/admob-for-maui-made-easy/
but I would like to wrap such functionality into Blazor component so it is easily…

Kebechet
- 1,461
- 15
- 31
1
vote
1 answer
How to have a transparent background on BlazorWebView in Windows
Is there a way to set the BlazorWebView's background color to be transparent on Windows in a MAUI Blazor Hybrid app?
I'm already using the handler to set the defaultBackgroundColor property to transparent, but it doesn't seem to work.

Hackmodford
- 3,901
- 4
- 35
- 78
1
vote
1 answer
How to Navigate from .Net Maui Page to Blazor page on Blazor Hybrid project
How to Navigate from .Net Maui Page to Blazor page on Blazor Hybrid project?

Ilyes Sahbeni
- 41
- 5
1
vote
2 answers
Capture the Navigation back from .Net Maui page to Blazor Page
i navigate from blazor page to .Net maui page using this code App.Current.MainPage.Navigation.PushModalAsync(new QRcodeSCanner()); ,Then i click on button that fire this code to navigate back to blazor page Navigation.PopModalAsync(); ...BUUUT, i…

Ilyes Sahbeni
- 41
- 5
1
vote
1 answer
Blazor Hybrid:
I'm using the latest version of MAUI and trying to create a Blazor Hybrid app.
The issue I'm facing is that I have a

IAmDrNoLIfe
- 86
- 7
0
votes
0 answers
Suggestions for an automation tool for MAUI Blazor desktop Windows app
I'm trying to find all over the internet an automation tool for the Blazor hybrid app.
I created a MAUI Blazor application for the Windows desktop, and I can't find an automation tool (to test UI scenarios).
Most of the automation tools are…

SomeOne404
- 21
- 1
0
votes
0 answers
Blazor Hybrid - How can I achieve saving the captured Photo to android local storage
I am using this code as my reference but I couldnt achieve saving it to local storage from android
public async void TakePhoto()
{
if (MediaPicker.Default.IsCaptureSupported)
{
FileResult photo = await…