Exemplo n.º 1
0
        private void RbBubbles_BubbleInfoUpdated(object sender, Rainbow.Events.BubbleInfoEventArgs e)
        {
            var conversation = Helper.SdkWrapper.GetOrCreateConversationFromBubbleId(e.BubbleId);

            if (conversation != null)
            {
                UpdateRBConversationToModel(conversation);
            }
        }
Exemplo n.º 2
0
 private void RbBubbles_BubbleInfoUpdated(object sender, Rainbow.Events.BubbleInfoEventArgs e)
 {
     if (System.Windows.Application.Current != null)
     {
         System.Windows.Application.Current.Dispatcher.Invoke(new Action(() =>
         {
             UpdateFavoriteNameByPeerId(e.BubbleId, e.Name);
         }));
     }
 }
Exemplo n.º 3
0
 private void RbBubbles_BubbleInfoUpdated(object sender, Rainbow.Events.BubbleInfoEventArgs e)
 {
     OnBubbleInfoUpdated(sender, e);
 }
 private void RbBubbles_BubbleInfoUpdated(object sender, Rainbow.Events.BubbleInfoEventArgs e)
 {
     vm.UpdateConversationNameByPeerId(e.BubbleId, e.Name);
 }