private void Undo_IconButton_Click(object sender, RoutedEventArgs e)
        {
            StartPanel      startPanel      = new StartPanel(main);
            TopBarAnimation topBarAnimation = new TopBarAnimation(main);

            topBarAnimation.Expand(startPanel);
        }
        private void cancelButton_Click(object sender, RoutedEventArgs e)
        {
            StartPanel      panel           = new StartPanel(main);
            TopBarAnimation topBarAnimation = new TopBarAnimation(main);

            topBarAnimation.Expand(panel);
        }
Example #3
0
        private void addConf_Click(object sender, RoutedEventArgs e)
        {
            ConferenceAdd   startPanel      = new ConferenceAdd(main);
            TopBarAnimation topBarAnimation = new TopBarAnimation(main);

            topBarAnimation.Collapse(startPanel);
        }
        public void PositiveButton_Click(object sender, RoutedEventArgs e)
        {
            messageWrap.Visibility = Visibility.Collapsed;
            messageWrap.Children.Clear();

            StartPanel      panel           = new StartPanel(main);
            TopBarAnimation topBarAnimation = new TopBarAnimation(main);

            topBarAnimation.Expand(panel);
        }
Example #5
0
        private void confsListView_PreviewMouseLeftButtonUp(object sender, MouseButtonEventArgs e)
        {
            Conference conf = ((ListViewItem)sender).Content as Conference;

            if (conf != null)
            {
                ConferenceInfo  panel           = new ConferenceInfo(main, conf);
                TopBarAnimation topBarAnimation = new TopBarAnimation(main);
                topBarAnimation.Collapse(panel);
            }
        }