1
0
Fork 0
Everything2Everything/src/Everything2Everything.App/Views/DiagnoseWindow.xaml

48 lines
2.4 KiB
XML

<ui:FluentWindow x:Class="Everything2Everything.App.Views.DiagnoseWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml"
Title="진단"
Width="680" Height="580"
MinWidth="560" MinHeight="480"
ExtendsContentIntoTitleBar="True"
WindowBackdropType="None"
WindowCornerPreference="Round"
WindowStartupLocation="CenterOwner">
<Window.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="FormatShiftTheme.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Window.Resources>
<Grid Background="{StaticResource FsBgBase}">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<ui:TitleBar Grid.Row="0" Title="진단" ShowMaximize="False" ShowMinimize="False"/>
<ScrollViewer Grid.Row="1" Margin="24,8,24,16" VerticalScrollBarVisibility="Auto">
<StackPanel x:Name="ItemsPanel"/>
</ScrollViewer>
<Border Grid.Row="2" Padding="24,14"
Background="{StaticResource FsBgPanel}"
BorderThickness="0,1,0,0"
BorderBrush="{StaticResource FsBorderSubtle}">
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Center">
<Button Style="{StaticResource FsSecondaryButtonStyle}"
Click="OnRefreshClick" Margin="0,0,8,0" Padding="14,6">
<StackPanel Orientation="Horizontal" VerticalAlignment="Center">
<ui:SymbolIcon Symbol="ArrowClockwise24" FontSize="13" VerticalAlignment="Center" Margin="0,0,6,0"/>
<TextBlock Text="새로고침" VerticalAlignment="Center"/>
</StackPanel>
</Button>
<Button Content="닫기" Style="{StaticResource FsPrimaryButtonStyle}"
Click="OnCloseClick" Padding="18,6"/>
</StackPanel>
</Border>
</Grid>
</ui:FluentWindow>