Ch.Epyx.WindMobile.WP7.View.SocialView.OnNavigatedTo C# (CSharp) Method

OnNavigatedTo() protected method

protected OnNavigatedTo ( System e ) : void
e System
return void
        protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
        {
            string roomid = NavigationContext.QueryString["chatroomid"];
            var station = ServiceCentral.ListService.LastResult.Where((s) => s.Id == roomid).First();
            this.DataContext = new SocialViewModel(station);
            ViewModel.MessageSent += MessageSent;
            ViewModel.MessageRefreshed += MessageRefreshed;
            ViewModel.RefreshMessages();
        }