-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
26 lines (22 loc) · 1.03 KB
/
MainWindow.xaml
File metadata and controls
26 lines (22 loc) · 1.03 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
<!-- Copyright (c) Microsoft Corporation and Contributors. -->
<!-- Licensed under the MIT License. -->
<Window
x:Class="Trinity.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Trinity"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Closed="Window_Closed">
<Grid Margin="35" Background="#0C0C0C">
<Grid.RowDefinitions>
<RowDefinition Height="2*"></RowDefinition>
</Grid.RowDefinitions>
<StackPanel Orientation="Horizontal" VerticalAlignment="Top" Background="Green">
<Button x:Name="SongPickButton" Click="SongPickButton_Click"
Margin="20" Background="#1A1A23">Pick a song</Button>
<Button x:Name="PlayPauseButton" Click="PlayPauseButton_Click" Background="#1A1A23">Play</Button>
</StackPanel>
</Grid>
</Window>