Esempio n. 1
0
        private void Undo_IconButton_Click(object sender, RoutedEventArgs e)
        {
            StartPanel      startPanel      = new StartPanel(main);
            TopBarAnimation topBarAnimation = new TopBarAnimation(main);

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

            topBarAnimation.Expand(panel);
        }
Esempio n. 3
0
        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);
        }
Esempio n. 4
0
        public MainWindow()
        {
            InitializeComponent();
            Database db = new Database();

            WindowStyle      = WindowStyle.SingleBorderWindow;
            this.WindowState = WindowState.Maximized;

            StartPanel panel = new StartPanel(this);

            wrap.Children.Add(panel);
        }
Esempio n. 5
0
        public void PositiveButton_Click(object sender, RoutedEventArgs e)
        {
            ConferenceQuery confQuery = new ConferenceQuery();

            confQuery.Delete(conf.ID);

            info.messageWrap.Visibility = Visibility.Collapsed;
            info.messageWrap.Children.Clear();

            StartPanel panel = new StartPanel(info.main);

            info.main.wrap.Children.Clear();
            info.main.wrap.Children.Add(panel);
        }