Beispiel #1
0
 void GoToProfileTab()
 {
     mProfileContainer.Visibility  = ViewStates.Visible;
     mProjectsContainer.Visibility = ViewStates.Gone;
     mAlertsContainer.Visibility   = ViewStates.Gone;
     if (mCurrentTab == HomeTab.Projects)
     {
         AnimationUtil.OutToRight(mProjectsContainer);
     }
     else if (mCurrentTab == HomeTab.Alerts)
     {
         AnimationUtil.OutToRight(mAlertsContainer);
     }
     AnimationUtil.InFromLeft(mProfileContainer);
 }