public TeacherLanding(LandingStrip landingStrip) { InitializeComponent(); this.landingStrip = landingStrip; user = new List <StudentInfo>(); marks = new List <MarkInfo>(); }
public MainWindow() { InitializeComponent(); beggining = new LandingStrip(); LbErrorPass.Visibility = Visibility.Hidden; LbErrorUser.Visibility = Visibility.Hidden; }
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(); }
public Student(LandingStrip landingStrip) { InitializeComponent(); this.landingStrip = landingStrip; question = new Methods(); printQ = new List <TestInfo>(); test = new List <TestInfo>(); addQuestions(); }
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(); }
public MainWindow() { InitializeComponent(); beggining = new LandingStrip(); }
public TeacherLanding(LandingStrip landingStrip) { InitializeComponent(); this.landingStrip = landingStrip; }
public StudentLanding(LandingStrip landingStrip) { InitializeComponent(); this.landingStrip = landingStrip; addAvaiableTests(); }