2023-08-06 13:46:36 -06:00
|
|
|
<Window x:Class="SoundBrowser.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:SoundBrowser"
|
|
|
|
mc:Ignorable="d"
|
2023-08-06 21:51:04 -06:00
|
|
|
Title="MainWindow" Height="800" Width="800">
|
2023-09-30 19:54:35 -06:00
|
|
|
<ScrollViewer>
|
|
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="auto"/>
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
</Grid.RowDefinitions>
|
2024-02-24 23:46:00 -07:00
|
|
|
<Button x:Name="_pauseButton" Grid.Row="0" Click="PauseClicked"></Button>
|
2023-08-06 21:51:04 -06:00
|
|
|
|
2024-02-24 23:46:00 -07:00
|
|
|
<TextBox x:Name="_tf" Grid.Row="1" IsReadOnly="True">current</TextBox>
|
2023-08-06 13:46:36 -06:00
|
|
|
|
2023-09-30 19:54:35 -06:00
|
|
|
</Grid>
|
|
|
|
</ScrollViewer>
|
2023-08-06 13:46:36 -06:00
|
|
|
</Window>
|