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:
Код: Выделить всё
Код: Выделить всё
MealRecipeViewКод: Выделить всё
Код: Выделить всё
ContentViewMy 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?
I'm quite frustrated and have been stuck on this problem for 2 days. Any help would be appreciated. Thanks!
Источник: https://stackoverflow.com/questions/781 ... -and-buggy
Мобильная версия