private void ConversationPage_LayoutUpdated(object sender, EventArgs e)
        {
            this.LayoutUpdated -= ConversationPage_LayoutUpdated;

            string id = NavigationContext.QueryString["id"];
            ViewModel = new ConversationViewModel(id);
            DataContext = ViewModel.Match;

            _profileName.Text = ViewModel.Match.Name;
            ImageBrush fillBrush = new ImageBrush();

            BitmapImage image = new BitmapImage(ViewModel.Match.ProfilePhoto);
            image.CreateOptions = BitmapCreateOptions.BackgroundCreation;

            fillBrush.SetValue(ImageBrush.ImageSourceProperty, image);
            fillBrush.Stretch = Stretch.UniformToFill;
            _profilePhotoCircle.Fill = fillBrush;
        }