Exemple #1
0
 internal void Clear()
 {
     _item = null;
     this.Title.ClearValue(TextBlock.TextProperty);
     this.Summary.ClearValue(TextBlock.TextProperty);
     this.Avator.ClearValue(Ellipse.FillProperty);
     this.Author.ClearValue(TextBlock.TextProperty);
     this.QueAnswerCount.ClearValue(TextBlock.TextProperty);
 }
Exemple #2
0
        internal void ShowPlaceHolder(HotCollection item)
        {
            _item = item;

            this.Title.Opacity          = 0;
            this.Summary.Opacity        = 0;
            this.Avator.Opacity         = 0;
            this.Author.Opacity         = 0;
            this.QueAnswerCount.Opacity = 0;
        }
Exemple #3
0
        private void HotCollectionTappedMethod(HotCollection collection)
        {
            NavHelper.NavToCollectionPage(collection.Id, AppShellPage.AppFrame);

            SystemNavigationManager.GetForCurrentView().BackRequested -= FindPage_BackRequested;
        }