ContactQueryHandler contactQueryHandler; //To create the queries and display the text (query results) on the screen public ContactPagePopup() { this.InitializeComponent(); this.contactQueryHandler = new ContactQueryHandler(); this.MakeQueriesAndTextBlocks(); //As soon as the page is loaded, the query results are drawn on it on runtime (dynamic) }
public ContactPage() { this.InitializeComponent(); this.contactQueryHandler = new ContactQueryHandler(); }