public MainPageV2() { FAQ1 faq = new FAQ1 { Question = "Who do Tal looks like?" }; InitializeComponent(); BindingContext = faq; }
private void Button_Clicked(object sender, EventArgs e) { FAQ1 f = (FAQ1)BindingContext; f.Answer = "STATIC"; }