WdSaveDatas.xaml 2.42 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1
<flyctrllib:WindowBigClose  
潘栩锋's avatar
潘栩锋 committed
2
    x:Class="FLY.Thick.Base.UI.WdSaveDatas"
潘栩锋's avatar
潘栩锋 committed
3 4 5 6 7 8
    xmlns:flyctrllib="clr-namespace:FLY.ControlLibrary;assembly=FLY.ControlLibrary"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:my="clr-namespace:FLY.ControlLibrary;assembly=FLY.ControlLibrary"
        Title="Window_FixSave"  mc:Ignorable="d" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"  
                 
潘栩锋's avatar
潘栩锋 committed
9
    xmlns:local="clr-namespace:FLY.Thick.Base.UI" SizeToContent="WidthAndHeight">
潘栩锋's avatar
潘栩锋 committed
10 11 12 13
    <Window.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="pack://application:,,,/FLY.ControlLibrary;component/Themes/Dictionary_MyStyle.xaml"/>
潘栩锋's avatar
潘栩锋 committed
14
                <!--<ResourceDictionary Source="pack://application:,,,/FLY.Thick.Base.UI;component/Culture/StringResource.zh-CN.xaml"/>-->
潘栩锋's avatar
潘栩锋 committed
15 16 17 18 19 20
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Window.Resources>

    <Grid TextBlock.FontSize="24" TextBlock.FontStyle="Normal" Width="600">
        <StackPanel Orientation="Vertical" Margin="5,20">
21
            <StackPanel Grid.Column="1" Orientation="Vertical" Margin="{StaticResource ControlMargin}">
潘栩锋's avatar
潘栩锋 committed
22
                <StackPanel Orientation="Horizontal">
23 24
                    <TextBlock Style="{StaticResource Styles.Text.FieldHeader}" Text="文件路径" VerticalAlignment="Bottom"/>
                    <Button Style="{StaticResource Styles.Button.Empty}" Click="button_open_Click" Background="White" VerticalAlignment="Bottom" Margin="{StaticResource ControlMargin}">
潘栩锋's avatar
潘栩锋 committed
25
                        <Path Data="{StaticResource Geometry_plus-box-outline}" Fill="{StaticResource Color_theme_activity}" Height="36" Width="36" Stretch="Fill" SnapsToDevicePixels="True" />
潘栩锋's avatar
潘栩锋 committed
26 27 28
                    </Button>
                </StackPanel>

潘栩锋's avatar
潘栩锋 committed
29
                <TextBlock Style="{StaticResource TextBlockStyle_FieldContent}" Text="{Binding SavePath}" HorizontalAlignment="Left" TextWrapping="Wrap" />
潘栩锋's avatar
潘栩锋 committed
30 31 32

            </StackPanel>
            <StackPanel Orientation="Horizontal"></StackPanel>
33
            <Button Content="保存" Style="{StaticResource  ButtonStyle2}"  Margin="{StaticResource ControlMargin}" Width="auto" Click="button_save_Click" />
潘栩锋's avatar
潘栩锋 committed
34 35 36 37
        </StackPanel>
    </Grid>

    </flyctrllib:WindowBigClose >