private void ShowControls()
 {
     ImageViewer.Show();
     TweetLabel.Show();
     TweeterGridView.Show();
     ViewImageButton.Show();
 }
 private void HideControls()
 {
     ImageViewer.Hide();
     TweetLabel.Hide();
     TweeterGridView.Hide();
     ViewImageButton.Hide();
 }
Esempio n. 3
0
        public void Set(Tweet tweet)
        {
            Console.WriteLine("set: title=" + tweet.Text);

            // I don't even...
            // http://stackoverflow.com/questions/28031832/how-can-i-reload-the-data-in-a-watchkit-tableview
            TweetLabel.SetText(@"");              // this fixes the issue I was having :-\
            TweetLabel.SetText(tweet.Text);
        }