private void startConf_Click(object sender, RoutedEventArgs e)
        {
            ConfWindow cw = new ConfWindow(conf.ID);

            cw.Show();
            info.main.Close();
        }
Beispiel #2
0
        private void ConfStart_IconButton_Click(object sender, RoutedEventArgs e)
        {
            ConfWindow cw = new ConfWindow(conf.ID);

            cw.Show();
            main.Close();
        }
        public Conference_StartPanel(ConfWindow main, Conference conf)
        {
            InitializeComponent();
            this.main = main;
            this.conf = conf;

            LoadInfo();
        }
        public Conference_LecturePanel(ConfWindow main, Conference conf)
        {
            InitializeComponent();
            this.main = main;
            this.conf = conf;

            LoadSpeakers();
            LoadInfo();
            loadTimer();
            nextSpeaker(Direction.FIRST);
        }