Esempio n. 1
0
        public NewBattlePopUp(User user)
        {
            this.InitializeComponent();
            this.DataContext = user;

            ShowAnnimation.Begin();
            RemoveAnnimation.Completed += RemoveAnnimation_Completed;
        }
Esempio n. 2
0
 private void Grid_Tapped(object sender, TappedRoutedEventArgs e)
 {
     if (isShow)
     {
         ShowAnnimation.Begin();
     }
     else
     {
         ColapseAnnimation.Begin();
     }
     isShow = !isShow;
 }
 public MonsterNearPopUp()
 {
     this.InitializeComponent();
     ShowAnnimation.Begin();
     RemoveAnnimation.Completed += RemoveAnnimation_Completed;
 }
 public CatchAreaProposition()
 {
     this.InitializeComponent();
     ShowAnnimation.Begin();
     RemoveAnnimation.Completed += RemoveAnnimation_Completed;
 }