So in my app, I have a
Код: Выделить всё
ContentViewКод: Выделить всё
Код: Выделить всё
BindablePropertyКод: Выделить всё
public static readonly BindableProperty RecipeProperty = BindableProperty.Create(nameof(Recipe), typeof(Recipe), typeof(MealRecipeView));
public Recipe Recipe
{
get { return (Recipe)GetValue(RecipeProperty); }
set
{
SetValue(RecipeProperty, value);
OnPropertyChanged(nameof(Recipe));
}
}
My issue is quite odd. The above view works perfectly fine under the following scenario:
Код: Выделить всё
Код: Выделить всё
MealRecipeViewwork anymore:
Код: Выделить всё
Код: Выделить всё
ContentViewFormer Case:

Latter case:

My question is that is this just some MAUI bug, and should I really be using it for serious projects? If not, can you suggest me some other similar frameworks that work on C# backend? Or maybe this is an issue of my own making?
Источник: https://stackoverflow.com/questions/781 ... -and-buggy
Мобильная версия