public override void ViewDidLoad()
        {
            var games      = dataService.GetAllGames();
            var dataSource = new GameDataSource(games, this);

            TableView.Source = dataSource;

            this.NavigationItem.Title = "மென் யாப்பு செயலியின் சேவைகள்";
        }
Ejemplo n.º 2
0
 public async void AddGameDialog_OnDialogClose()
 {
     Games = (await GameDataService.GetAllGames()).ToList();
     StateHasChanged();
 }
Ejemplo n.º 3
0
 protected override async Task OnInitializedAsync()
 {
     Games = (await GameDataService.GetAllGames()).ToList();
 }
Ejemplo n.º 4
0
        protected override async Task OnInitializedAsync()
        {
            Games = await GameDataService.GetAllGames();

            //AddGameDialog.OnDialogClose += AddGameDialog_OnDialogClose;
        }