/// <summary>
        /// Handles the Click event of the btnInformations control wich navigates to the information window.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="RoutedEventArgs"/> instance containing the event data.</param>
        private void btnInformations_Click(object sender, RoutedEventArgs e)
        {
            Informations info = new Informations();

            info.Show();
            Close();
        }
 /// <summary>
 /// Handles the Click event of the btnInformations control wich navigates to the information window.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="RoutedEventArgs"/> instance containing the event data.</param>
 private void btnInformations_Click(object sender, RoutedEventArgs e)
 {
     Informations info = new Informations();
     info.Show();
     Close();
 }