Example #1
0
        private void TopicPicked(object sender, RoutedEventArgs e)
        {
            string topic = ((Button)sender).Content.ToString();

            if (!engin.ChangeTopic(topic))
            {
                MessageBox.Show("Topic not found.");
            }

            RenderNotes();
        }