KaraokePC/SingsALot/MainWindow.xaml
Matt Bruce e90160c56d added windows launch app
Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>
2017-12-12 08:51:12 -06:00

19 lines
1.7 KiB
XML

<Window x:Class="SingsALot.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:SingsALot"
mc:Ignorable="d"
Title="SingsALot" Height="200" Width="480" ResizeMode="NoResize">
<Grid>
<Button x:Name="launchPlayerButton" Content="Launch Player" HorizontalAlignment="Left" Margin="9,97,0,0" VerticalAlignment="Top" Width="145" Height="44" IsEnabled="False" Click="launchPlayerButton_Click"/>
<Button x:Name="syncLibraryButton" Content="Sync Library" HorizontalAlignment="Left" Margin="160,97,0,0" VerticalAlignment="Top" Width="145" Height="44" IsEnabled="False" Click="syncLibraryButton_Click"/>
<Button x:Name="updateBillboardButton" Content="Update Billboard" HorizontalAlignment="Left" Margin="310,97,0,0" VerticalAlignment="Top" Width="145" Height="44" IsEnabled="False" Click="updateBillboardButton_Click"/>
<TextBox x:Name="controllerName" HorizontalAlignment="Left" Height="23" Margin="10,10,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="295" TextChanged="controllerName_TextChanged"/>
<TextBox x:Name="songsLocation" HorizontalAlignment="Left" Height="23" Margin="10,38,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="295" TextChanged="songsLocation_TextChanged"/>
<Button x:Name="songsLocationButton" Content="Songs Folder" HorizontalAlignment="Left" Margin="310,38,0,0" VerticalAlignment="Top" Width="145" Height="23" Click="songsLocationButton_Click"/>
</Grid>
</Window>