Skip to content

Instantly share code, notes, and snippets.

@dhindrik
Created August 16, 2022 05:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dhindrik/05406ea40b4bb11786986736a2057ddd to your computer and use it in GitHub Desktop.
Save dhindrik/05406ea40b4bb11786986736a2057ddd to your computer and use it in GitHub Desktop.
public partial class MainPage : ContentPage
{
private MainPageViewModel ViewModel => BindingContext as MainPageViewModel;
public MainPage(MainPageViewModel viewModel)
{
InitializeComponent();
BindingContext = viewModel;
}
protected override void OnBindingContextChanged()
{
base.OnBindingContextChanged();
MainThread.BeginInvokeOnMainThread(async () => await ViewModel.LoadData());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment