implemented search artists in MusicBrainz
This commit is contained in:
@@ -19,14 +19,16 @@
|
||||
|
||||
<!-- Search -->
|
||||
<TextBox
|
||||
PlaceholderText="🔎 Search artists, albums and songs..."
|
||||
HorizontalAlignment="Stretch" />
|
||||
x:Name="SearchBox"
|
||||
PlaceholderText="🔎 Search artists, albums and songs..."
|
||||
HorizontalAlignment="Stretch"
|
||||
KeyDown="SearchBox_KeyDown"/>
|
||||
|
||||
<!-- Last Artists -->
|
||||
<StackPanel Spacing="12">
|
||||
<TextBlock
|
||||
Text="Last artists"
|
||||
Style="{StaticResource TitleTextBlockStyle}" />
|
||||
Text="Last artists"
|
||||
Style="{StaticResource TitleTextBlockStyle}" />
|
||||
|
||||
<ListView>
|
||||
<!-- Artists -->
|
||||
@@ -36,30 +38,30 @@
|
||||
<!-- Last Albums -->
|
||||
<StackPanel Spacing="12">
|
||||
<TextBlock
|
||||
Text="Last albums"
|
||||
Style="{StaticResource TitleTextBlockStyle}" />
|
||||
Text="Last albums"
|
||||
Style="{StaticResource TitleTextBlockStyle}" />
|
||||
|
||||
<ListView>
|
||||
<!-- Albums -->
|
||||
</ListView>
|
||||
</StackPanel>
|
||||
|
||||
<!-- Last Songs -->
|
||||
<!-- Last Tracks -->
|
||||
<StackPanel Spacing="12">
|
||||
<TextBlock
|
||||
Text="Last songs"
|
||||
Style="{StaticResource TitleTextBlockStyle}" />
|
||||
Text="Last tracks"
|
||||
Style="{StaticResource TitleTextBlockStyle}" />
|
||||
|
||||
<ListView>
|
||||
<!-- Songs -->
|
||||
<!-- Tracks -->
|
||||
</ListView>
|
||||
</StackPanel>
|
||||
|
||||
<!-- New Releases -->
|
||||
<StackPanel Spacing="12">
|
||||
<TextBlock
|
||||
Text="New releases"
|
||||
Style="{StaticResource TitleTextBlockStyle}" />
|
||||
Text="New releases"
|
||||
Style="{StaticResource TitleTextBlockStyle}" />
|
||||
|
||||
<!-- Content loaded from internet -->
|
||||
</StackPanel>
|
||||
|
||||
Reference in New Issue
Block a user