11 questions
0
votes
1
answer
79
views
Attempting to run a dotnet10 MAUI-App on windows (10.0.19041.0) results in a cryptic error 'Class not registered (0x80040154 (REGDB_E_CLASSNOTREG))'
I recently upgraded a net8 MAUI app over to net10-preview7. All targets (Android, iOS, MacCatalyst, ...) launch successfully except Windows which crashes on startup with the following cryptic error:
...
0
votes
0
answers
36
views
Microsoft Graph error - how to extract http-status from API
ref. the query same subject of 17 June 2020 and relevant answer.
ServiceException apparently is changed and now 'StatusCode' should be replaced by 'ResponseStatusCode'
I tried to catch it in the ...
2
votes
1
answer
319
views
Missing "Platforms" folder when setting up a .NET MAUI project for xUnit testing
The problem is at follows.
I'm working on my Bachelor's degree project in MAUI and I have to do some unit tests. I looked up online and found several tutorials that show the modification of the ....
0
votes
0
answers
120
views
Picker with custom template
This is quite simple task but I am running short on ideas how to implement it. I have added FontAwesome to my app and would like to create a picker control that would display two different labels with ...
0
votes
2
answers
2k
views
Problem with Activity Indicator in Net Maui
I have an Activity Indicator control that I need to display when a button is pressed. This button gets one two to display on the screen. The problem is that the Activity Indicator is displayed after ...
1
vote
1
answer
969
views
.net maui ContentView custom event
I have a ContentView that wraps my MediaElement to use as audio player. Here is how I implemented it.
namespace Solution.MobileApp.Components;
public partial class AudioPlayer : ContentView
{
...