Exemple #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
 }
Exemple #2
0
 StaticInfoQueryHandler infoQueryHandler; //To create the queries and display the text (query results) on the screen
 public InfoPopup()
 {
     this.infoQueryHandler = new StaticInfoQueryHandler();
     this.InitializeComponent();
     this.MakeQueriesAndTextBlocks();  //As soon as the page is loaded, the query results are drawn on it on runtime (dynamic)
 }