73 lines
1.7 KiB
XML
73 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Page
|
|
x:Class="HarmonyWinUI.Pages.Dashboard"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:HarmonyWinUI.Pages"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d">
|
|
|
|
<ScrollViewer>
|
|
<StackPanel
|
|
Padding="24"
|
|
Spacing="24">
|
|
|
|
<TextBlock Text="Dashboard" FontFamily="Arial"
|
|
FontSize="24" TextWrapping="WrapWholeWords"
|
|
CharacterSpacing="200" Foreground="LightGray" />
|
|
|
|
<!-- Search -->
|
|
<TextBox
|
|
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}" />
|
|
|
|
<ListView>
|
|
<!-- Artists -->
|
|
</ListView>
|
|
</StackPanel>
|
|
|
|
<!-- Last Albums -->
|
|
<StackPanel Spacing="12">
|
|
<TextBlock
|
|
Text="Last albums"
|
|
Style="{StaticResource TitleTextBlockStyle}" />
|
|
|
|
<ListView>
|
|
<!-- Albums -->
|
|
</ListView>
|
|
</StackPanel>
|
|
|
|
<!-- Last Tracks -->
|
|
<StackPanel Spacing="12">
|
|
<TextBlock
|
|
Text="Last tracks"
|
|
Style="{StaticResource TitleTextBlockStyle}" />
|
|
|
|
<ListView>
|
|
<!-- Tracks -->
|
|
</ListView>
|
|
</StackPanel>
|
|
|
|
<!-- New Releases -->
|
|
<StackPanel Spacing="12">
|
|
<TextBlock
|
|
Text="New releases"
|
|
Style="{StaticResource TitleTextBlockStyle}" />
|
|
|
|
<!-- Content loaded from internet -->
|
|
</StackPanel>
|
|
|
|
</StackPanel>
|
|
</ScrollViewer>
|
|
|
|
</Page>
|