private void PriceControlNavButton_Click(object sender, RoutedEventArgs e)
        {
            //Load and display the Price Control page, closing this one.
            PriceControl priceControl = new PriceControl();

            priceControl.Show();
            this.Close();
        }
        private void BackButton_Click(object sender, RoutedEventArgs e)
        {
            //Return to the previous page, closing this one.
            PriceControl priceControl = new PriceControl();

            priceControl.Show();
            this.Close();
        }