Files
downkyicore/DownKyi/PrismExtension/Dialog/DialogWindow.axaml

27 lines
1.3 KiB
XML

<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:CompileBindings="False"
x:Class="DownKyi.PrismExtension.Dialog.DialogWindow"
Title="{Binding Title}"
WindowStartupLocation="CenterOwner">
<Window.Styles>
<Style Selector="Window">
<Setter Property="SizeToContent" Value="WidthAndHeight" />
<Setter Property="UseLayoutRounding" Value="True" />
<Setter Property="TransparencyLevelHint" Value="AcrylicBlur" />
<Setter Property="BorderThickness" Value="1" />
<Setter Property="CanResize" Value="False" />
<Setter Property="ShowInTaskbar" Value="False" />
<Setter Property="SystemDecorations" Value="None" />
</Style>
<!-- <Style Selector="Window"> -->
<!-- <Setter Property="FontFamily" Value="{DynamicResource ProgramFont}" /> -->
<!-- </Style> -->
<!-- <Style Selector="TemplatedControl"> -->
<!-- <Setter Property="FontFamily" Value="{DynamicResource ProgramFont}" /> -->
<!-- </Style> -->
<!-- <SimpleTheme /> -->
<!-- <StyleInclude Source="avares://Avalonia.Themes.Simple/SimpleTheme.xaml" /> -->
</Window.Styles>
</Window>