<controls:MetroWindow x:Class="LunarSF.SHomeWorkshop.LunarMarkdownEditor.FileSelectorDialog"
                      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:local="clr-namespace:LunarSF.SHomeWorkshop.LunarMarkdownEditor"
                      xmlns:controls="http://metro.mahapps.com/winfx/xaml/controls"
                      xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
                      mc:Ignorable="d"
                      Title="{x:Static Member=local:Globals.AppName}"
                      Icon="App.png"
                      BorderBrush="#FFBB6115"
                      BorderThickness="1"
                      GlowBrush="#FFBB6115"
                      FontFamily="Simsun"
                      FontSize="14"
                      TextOptions.TextFormattingMode="Display"
                      Padding="0"
                      Height="400"
                      Width="500">
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="auto" />
            <RowDefinition />
            <RowDefinition Height="auto" />
        </Grid.RowDefinitions>

        <TextBlock Padding="10"
                   Foreground="White"
                   Background="#FF9B7B56">此工作区上次打开的文件:</TextBlock>

        <ListBox Name="lstFiles"
                 Grid.Row="1"
                 Margin="10,10,10,10" />

        <DockPanel Grid.Row="2"
                   Background="#FF9B7B56"
                   LastChildFill="False">
            <Button Name="btnCancle"
                    Margin="10"
                    Padding="10,4"
                    DockPanel.Dock="Right"
                    BorderThickness="1"
                    FontWeight="Normal"
                    IsCancel="True"
                    Style="{StaticResource ResourceKey=SquareButtonStyle}"
                    Click="btnCancle_Click">
                跳过(_I)
            </Button>
            <Button Name="btnOK"
                    Margin="10"
                    Padding="10,4"
                    DockPanel.Dock="Right"
                    BorderThickness="1"
                    FontWeight="Normal"
                    IsDefault="True"
                    Style="{StaticResource ResourceKey=SquareButtonStyle}"
                    Click="btnOK_Click">打开(_O)</Button>
            
            <Button Name="btnUnselectAll"
                    Margin="10,10,2,10"
                    Padding="10,4"
                    DockPanel.Dock="Left"
                    BorderThickness="1"
                    FontWeight="Normal"
                    Style="{StaticResource ResourceKey=SquareButtonStyle}"
                    Click="btnUnselectAll_Click">全不选(_U)</Button>
            
            <Button Name="btnSwitchSelect"
                    Margin="2,10"
                    Padding="10,4"
                    DockPanel.Dock="Left"
                    BorderThickness="1"
                    FontWeight="Normal"
                    Style="{StaticResource ResourceKey=SquareButtonStyle}"
                    Click="btnSwitchSelect_Click">反选(_S)</Button>

            <Button Name="btnSelectAll"
                    Margin="2,10"
                    Padding="10,4"
                    DockPanel.Dock="Left"
                    BorderThickness="1"
                    FontWeight="Normal"
                    Style="{StaticResource ResourceKey=SquareButtonStyle}"
                    Click="btnSelectAll_Click">全选(_A)</Button>
        </DockPanel>

    </Grid>
</controls:MetroWindow>