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-08-06 13:46:36 -06:00
|
|
|
<Grid>
|
2023-08-06 21:51:04 -06:00
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="auto"/>
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
|
|
<TextBlock x:Name="_tf" Grid.Row="0">current</TextBlock>
|
|
|
|
<TextBlock x:Name="_tf2" Grid.Row="1">list</TextBlock>
|
2023-08-06 13:46:36 -06:00
|
|
|
|
|
|
|
</Grid>
|
|
|
|
</Window>
|