added buttons for play list

This commit is contained in:
2026-08-15 17:59:49 +02:00
parent 716d39d117
commit 569f436789
2 changed files with 65 additions and 39 deletions
+8
View File
@@ -81,4 +81,12 @@
</Page> </Page>
</ItemGroup> </ItemGroup>
<ItemGroup>
<EditorConfigFiles Remove="D:\work\Harmony\HarmonyWinUI\.editorconfig" />
</ItemGroup>
<ItemGroup>
<None Include="D:\work\Harmony\HarmonyWinUI\.editorconfig" />
</ItemGroup>
</Project> </Project>
+19 -1
View File
@@ -60,8 +60,24 @@
ResizeDirection="Columns" ResizeDirection="Columns"
ResizeBehavior="PreviousAndNext" /> ResizeBehavior="PreviousAndNext" />
<Grid Grid.Column="2">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<CommandBar
Background="Transparent"
IsOpen="False"
DefaultLabelPosition="Right"
HorizontalAlignment="Left">
<AppBarButton Icon="OpenFile" Label="Open"/>
<AppBarButton Icon="Save" Label="Save"/>
<AppBarButton Icon="Delete" Label="Delete"/>
</CommandBar>
<ListView <ListView
Grid.Column="2" Grid.Row="1"
SelectionMode="Single" SelectionMode="Single"
ItemsSource="{x:Bind Items}"> ItemsSource="{x:Bind Items}">
<ListView.ItemTemplate> <ListView.ItemTemplate>
@@ -98,6 +114,8 @@
</DataTemplate> </DataTemplate>
</ListView.ItemTemplate> </ListView.ItemTemplate>
</ListView> </ListView>
</Grid>