Beispiel #1
0
        private void FormalDressCodeButton_Click(object sender, RoutedEventArgs e)
        {
            CasualDressCode x = new CasualDressCode();

            x.ShirtImage.Source = new BitmapImage(new Uri("/FinalExamination;component/Assets/Wardrobe/formal_shirt.jpg", UriKind.Relative));
            x.PantsImage.Source = new BitmapImage(new Uri("/FinalExamination;component/Assets/Wardrobe/tuxedo_pants.jpg", UriKind.Relative));
            x.ShoesImage.Source = new BitmapImage(new Uri("/FinalExamination;component/Assets/Wardrobe/tuxedo_shoes.jpg", UriKind.Relative));

            x.Show();
        }
Beispiel #2
0
        private void CasualDressCodeButton_Click(object sender, RoutedEventArgs e)
        {
            CasualDressCode x = new CasualDressCode();

            x.Show();
        }