コード例 #1
0
ファイル: Player.xaml.cs プロジェクト: martin-juul/radeoh
        protected override async void OnAppearing()
        {
            base.OnAppearing();

            StationImage.Source    = _playerViewModel.Station.CachedImageSource;
            LabelMediaDetails.Text = _playerViewModel.Station.Name;
            LabelMediaGenre.Text   = _playerViewModel.Station.Genre;

            await _playerViewModel.InitPlay();
        }