private void notchoose_Click(object sender, RoutedEventArgs e)
 {
     MessageDialog dialog = new MessageDialog("Thankyou for Accepting the agreement by not choosing. Best option ever.");
     dialog.ShowAsync();
     loadframe Installscreen = new loadframe();
     Install_Screen install = new Install_Screen();
     Installscreen.load(this, install);
 }
 private void Agree_Click(object sender, RoutedEventArgs e)
 {
     MessageDialog dialog = new MessageDialog("You have Agreed to the Terms and Conditions");
     dialog.ShowAsync();
     loadframe Installscreen = new loadframe();
     Install_Screen install = new Install_Screen();
     Installscreen.load(this, install);
 }