Ejemplo n.º 1
0
 private async void LeagueInfo_OnUpdateProgress(object sender, LeagueInfo.UpdateEventArgs e)
 {
     await Connection.SetTitleAsync($"{e.Progress}%");
 }
Ejemplo n.º 2
0
        private async void LeagueInfo_OnUpdateCompleted(object sender, LeagueInfo.UpdateEventArgs e)
        {
            await Connection.SetDefaultImageAsync();

            await Connection.SetTitleAsync(string.Empty);
        }
Ejemplo n.º 3
0
 private async void LeagueInfo_OnUpdateStarted(object sender, LeagueInfo.UpdateEventArgs e)
 {
     var image = Utilities.GetUpdateImage();
     await Connection.SetImageAsync(image);
 }