Files
Navigation_MAUI/View/DetailedPage.xaml.cs

11 lines
259 B
C#

using Navigation_Between.Model;
namespace Navigation_Between.View;
public partial class DetailedPage : ContentPage {
public DetailedPage(User user) {
InitializeComponent();
// Binding z poziomu kodu
BindingContext = user;
}
}