Beispiel #1
0
 public TeacherLanding(LandingStrip landingStrip)
 {
     InitializeComponent();
     this.landingStrip = landingStrip;
     user  = new List <StudentInfo>();
     marks = new List <MarkInfo>();
 }
Beispiel #2
0
 public MainWindow()
 {
     InitializeComponent();
     beggining = new LandingStrip();
     LbErrorPass.Visibility = Visibility.Hidden;
     LbErrorUser.Visibility = Visibility.Hidden;
 }
Beispiel #3
0
 public StudentLanding(LandingStrip landingStrip)
 {
     InitializeComponent();
     this.landingStrip = landingStrip;
     tests             = new List <TestInfo>();
     marks             = new List <MarkInfo>();
     person            = new Student(landingStrip);
 }
 public Student(LandingStrip landingStrip)
 {
     InitializeComponent();
     this.landingStrip = landingStrip;
     question          = new Methods();
     marks             = new List <MarkInfo>();
     test = new List <TestInfo>();
     addAvaiableTests();
 }
Beispiel #5
0
 public Student(LandingStrip landingStrip)
 {
     InitializeComponent();
     this.landingStrip = landingStrip;
     question          = new Methods();
     printQ            = new List <TestInfo>();
     test = new List <TestInfo>();
     addQuestions();
 }
Beispiel #6
0
 public TeacherTest(LandingStrip landingStrip)
 {
     InitializeComponent();
     this.landingStrip = landingStrip;
     test = new List <TestInfo>();
     test = Methods.fillTest();
     //adding contents of list to datagrid
     DgTests.ItemsSource = null;
     DgTests.Items.Refresh();
     DgTests.ItemsSource = test;
     DgTests.Items.Refresh();
 }
Beispiel #7
0
 public MainWindow()
 {
     InitializeComponent();
     beggining = new LandingStrip();
 }
 public TeacherLanding(LandingStrip landingStrip)
 {
     InitializeComponent();
     this.landingStrip = landingStrip;
 }
Beispiel #9
0
 public StudentLanding(LandingStrip landingStrip)
 {
     InitializeComponent();
     this.landingStrip = landingStrip;
     addAvaiableTests();
 }