mirror of
https://github.com/WinDurango/WinDurango.UI.git
synced 2026-01-31 00:55:24 +01:00
16 lines
535 B
XML
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>
|