31 lines
967 B
XML
31 lines
967 B
XML
<Window
|
|
x:Class="Wpf.Ui.Demo.Dialogs.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml"
|
|
Title="WPF UI - Dialog sample"
|
|
Width="800"
|
|
Height="450"
|
|
mc:Ignorable="d"
|
|
>
|
|
<Window.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ui:ThemesDictionary Theme="Light" />
|
|
<ui:ControlsDictionary />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
</ResourceDictionary>
|
|
</Window.Resources>
|
|
<Grid>
|
|
<ui:Button
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Click="OnShowDialogClick"
|
|
Content="Show dialog"
|
|
/>
|
|
<ContentPresenter x:Name="ContentPresenterForDialogs" Grid.Row="0" />
|
|
</Grid>
|
|
</Window>
|