WdSaveMessage.xaml 1.96 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35

<flyctrllib:WindowBigClose x:Class="FLY.KSL.UI.Client.WdSaveMessage"
        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"
                xmlns:flyctrllib="clr-namespace:FLY.ControlLibrary;assembly=FLY.ControlLibrary"

        Title="Window_graphfix"  mc:Ignorable="d" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" WindowStartupLocation="CenterScreen">
    <Window.Resources>
        <ResourceDictionary>

            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="pack://application:,,,/FLY.ControlLibrary;component/Themes/Dictionary_MyStyle.xaml"/>
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Window.Resources>

    <Grid TextBlock.FontSize="24" TextBlock.FontStyle="Normal" >
        <StackPanel Orientation="Vertical" Margin="5,20">
            <StackPanel >
                <TextBlock Text="警告" FontWeight="Bold" FontSize="72" FontFamily="YouYuan" Margin="40,20" Foreground="Red" />
                <TextBlock Text="是否覆盖之前的记录?" FontWeight="Bold" FontSize="36" FontFamily="YouYuan" Margin="40,20" TextWrapping="Wrap"  />
            </StackPanel>
            <Grid>
                <Grid.ColumnDefinitions>
                    <ColumnDefinition/>
                    <ColumnDefinition/>
                </Grid.ColumnDefinitions>
                <Button Style="{StaticResource ButtonStyle2}" Content="是"  Width="Auto" Margin="5" Click="button_ok_Click" Background="#FF127300" />
                <Button Grid.Column="1" Style="{StaticResource ButtonStyle2}" Content="否"  Width="Auto" Margin="5" Click="button_cancel_Click" Background="#FFEC0000" />
            </Grid>
        </StackPanel>
    </Grid>

    </flyctrllib:WindowBigClose>