-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScience.xaml
22 lines (22 loc) · 933 Bytes
/
Science.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="museumApp.Science"
Title="Science Museums">
<VerticalStackLayout>
<Label
Text="Science Museums"
FontSize="Title"
VerticalOptions="Center"
HorizontalOptions="Center"
SemanticProperties.HeadingLevel="Level1"/>
<Image
Source="science_logo_large.png"
HeightRequest="100"
HorizontalOptions="Center"
SemanticProperties.Description="Science Museums Logo"/>
<Button x:Name="techStudyStore" Text="Technical Study Stores"/>
<Button x:Name="illusionsMuseum" Text="Illusions Museum"/>
<Button x:Name="medicalMuseum" Text="Medical Museum"/>
</VerticalStackLayout>
</ContentPage>