Comment by Liyun Zhang - MSFT on Access is Denied from...
You can try to delete the file and add it again. And don't forget to set its build action as MauiImage.
View ArticleComment by Liyun Zhang - MSFT on Tab Navigation In MAUI Is Not Showing The...
clicking on the shell tab will set the tab selected as root page of the Navigation Stack.
View ArticleComment by Liyun Zhang - MSFT on ServiceStack.Text latest version (8.3.0)...
Did you try to debug to check the type of the UserRequest on real device?
View ArticleComment by Liyun Zhang - MSFT on MAUI and IFingerprint: how to authenticate...
Where did you override the OnResume method? In the App.cs or the MainActivity.cs?
View ArticleComment by Liyun Zhang - MSFT on MAUI save image in Resources/Images folder
The static files in the resources folder are read-only. You can choose to use the device local storage to save the image.
View ArticleComment by Liyun Zhang - MSFT on MAUI Application WinUI3 Windows window...
The official document only mentioned that It will increase the size of the title bar to 48px when you include a searchbox or a person-picture.
View ArticleComment by Liyun Zhang - MSFT on Error The “VerifyVersionsTask” task failed...
The xamarin.auth doesn't support for Maui. And you can use the Web authenticator instead.
View ArticleComment by Liyun Zhang - MSFT on Counter in Thread Stops Incrementing When...
What platform did you test on?
View ArticleComment by Liyun Zhang - MSFT on In visual studio 2022 GoogleServiceJson...
Did you try to set the Android Version in the AndroidManifest.xml instead?
View ArticleComment by Liyun Zhang - MSFT on How To Bind ObservableList item to DataTemplate
What's the type of Product property in the ProductView?
View ArticleComment by Liyun Zhang - MSFT on How to Detect Memory Leaks in .NET MAUI App...
You can check the wiki about Memory Leaks in Maui on the github.
View ArticleComment by Liyun Zhang - MSFT on Issue with ScrollView multiple Listviews in...
You can try to use the scroll event to make the three listview scroll sync.
View ArticleComment by Liyun Zhang - MSFT on MAUI DEP1000 AppX folder Issue
Did you test with a new default maui project template?
View ArticleAnswer by Liyun Zhang - MSFT for Implement PlayGameServices snapshots on MAUI...
There is an known issue about Binding for com.google.android.gms.games.snapshot. And the Author said:I have tried the latest version of Xamarin.GooglePlayServices.Games.V2, and there is no...
View ArticleAnswer by Liyun Zhang - MSFT for File Delete Not Working on .NET MAUI (for...
First of, the Path.Combine will not create the file if it's not existed on the android. So I used the FileStream to create it.string filePath = Path.Combine(FileSystem.AppDataDirectory,...
View ArticleComment by Liyun Zhang - MSFT on How to define a MAUI global style for your...
Did you try to declare the TextColor as bindable property?
View ArticleAnswer by Liyun Zhang - MSFT for How to define a MAUI global style for your...
You can declare the TextColor as bindable property add then set the style:public class MyClass : Grid, IDisposable { private Label label; public static readonly BindableProperty TextColorProperty...
View ArticleComment by Liyun Zhang - MSFT on Android 14 .Net8 Maui Blazor Keyboard not...
Did the keyboard show on the other android versions?
View ArticleComment by Liyun Zhang - MSFT on System.InvalidOperationException in MAUI...
Did you try to debug to find which line caused this error?
View ArticleAnswer by Liyun Zhang - MSFT for Android 14 .Net8 Maui Blazor Keyboard not...
First of all, I created a new .Net8 Maui Blazor project with the defaul template. And the keyboard can show successfully when I click the <input> in the razor page:@page "/"<h1>Hello,...
View Article