Esempio n. 1
0
 StaticInfoQueryHandler infoQueryHandler;     //to store the button name and then make queries based on it
 public Wijnhaven107()
 {
     this.InitializeComponent();
     this.infoQueryHandler      = new StaticInfoQueryHandler();
     this.educationQueryHandler = new EducationQueryHandler();
     educationQueryHandler.CurrentWijnhavenGetSet = EducationQueryHandler.CurrentWijnhaven.wijnhaven107; //Changes state to keep track of the last selected wijnhaven
 }
Esempio n. 2
0
 public Wijnhaven99Education()
 {
     this.InitializeComponent();
     this.educationQueryHandler = new EducationQueryHandler(); //To store the last selected education button
 }
 EducationQueryHandler educationQueryHandler; //To create the queries and display the text (query results) on the screen
 public EducationPagePopUp()
 {
     this.InitializeComponent();
     this.educationQueryHandler = new EducationQueryHandler();
     MakeQueriesAndTextBlocks();  //As soon as the page is loaded, the query results are drawn on it on runtime (dynamic)
 }