-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCreateAlbum.xaml
More file actions
35 lines (32 loc) · 1.85 KB
/
CreateAlbum.xaml
File metadata and controls
35 lines (32 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<Page
x:Class="PhotoLibraryApp.CreateAlbum"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:PhotoLibraryApp"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid>
<Page>
<CommandBar DefaultLabelPosition="Right">
<AppBarButton x:Name="CancelSelectionBtn" Label="Cancel" Icon="Cancel" Click="CancelSelectionBtn_Click_1"/>
</CommandBar>
</Page>
<ScrollViewer VerticalScrollBarVisibility="Visible" VerticalScrollMode="Enabled" Margin="100, 50, 110, 20">
<StackPanel Orientation="Vertical">
<StackPanel Orientation="Horizontal">
<Button Content="Collection" Background="White" BorderBrush="Gray" BorderThickness="0, 0, 0, 1" FontSize="20" Click="Collection_Button_Click"/>
<Button Content="Albums" Background="White" Click="Album_Button_Click" FontSize="20"/>
</StackPanel>
</StackPanel>
</ScrollViewer>
<StackPanel Orientation="Vertical" Margin="150, 150, 150, 150" HorizontalAlignment="Center" VerticalAlignment="Center">
<StackPanel Orientation="Horizontal">
<TextBlock Text="Album Name: " Width="170" Height="50" FontSize="25" VerticalAlignment="Bottom"/>
<TextBox x:Name="albumName" Height="50" Width="300" />
</StackPanel>
<Button Content="+ Add Photos" Click="Button_ClickAsync" HorizontalAlignment="Center" Margin="30" VerticalAlignment="Top" FontSize="20" Background="White" BorderBrush="Gray"/>
</StackPanel>
</Grid>
</Page>