Files
archived-WinDurango.UI/Dialogs/AppListDialog.xaml
2025-02-25 13:37:03 +01:00

16 lines
535 B
XML

<ContentDialog
x:Class="WinDurango.UI.Dialogs.AppListDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="TITLE"
Style="{ThemeResource DefaultContentDialogStyle}"
PrimaryButtonText="Add"
PrimaryButtonClick="AddToAppList"
SecondaryButtonText="Cancel"
SecondaryButtonClick="HideDialog">
<Grid>
<ListView x:Name="appListView" Loaded="AppListView_Loaded">
</ListView>
</Grid>
</ContentDialog>