WdAdScale.xaml 2.38 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1
<flyctrllib:WindowBigClose x:Class="FLY.Thick.Base.UI.WdAdScale"
潘栩锋's avatar
潘栩锋 committed
2 3 4
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:flyctrllib="clr-namespace:FLY.ControlLibrary;assembly=FLY.ControlLibrary"
潘栩锋's avatar
潘栩锋 committed
5
        xmlns:local="clr-namespace:FLY.Thick.Base.UI"
6 7 8
        Title="" mc:Ignorable="d" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
                           xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" SizeToContent="WidthAndHeight" 
                           Background="WhiteSmoke">
潘栩锋's avatar
潘栩锋 committed
9 10 11 12 13 14 15 16 17 18
    <Window.Resources>
        <ResourceDictionary>
            <local:BytesConverter x:Key="bytesconv"/>
            <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" >
19 20
                <StackPanel Margin="{StaticResource ControlMargin}">
                    <Grid Height="30"/>
潘栩锋's avatar
潘栩锋 committed
21
                    <StackPanel Orientation="Horizontal">
22 23
                <StackPanel Margin="{StaticResource ControlMargin}">
                        <TextBlock Style="{StaticResource Styles.Text.FieldHeader.Editable}" Text="原始" />
潘栩锋's avatar
潘栩锋 committed
24
                        <StackPanel Orientation="Horizontal">
25
                        <TextBox Style="{StaticResource Styles.Text.FieldContent.Input}" Text="{Binding Old}" />
潘栩锋's avatar
潘栩锋 committed
26 27
                        </StackPanel>
                    </StackPanel>
28 29 30
                <TextBlock Style="{StaticResource Styles.Text.FieldHeader}" Text="->" VerticalAlignment="Center" />
                <StackPanel Margin="{StaticResource ControlMargin}">
                    <TextBlock Style="{StaticResource Styles.Text.FieldHeader.Editable}" Text="变化后" />
潘栩锋's avatar
潘栩锋 committed
31
                        <StackPanel Orientation="Horizontal">
32
                        <TextBox Style="{StaticResource Styles.Text.FieldContent.Input}" Text="{Binding New}" />
潘栩锋's avatar
潘栩锋 committed
33 34 35 36
                        </StackPanel>
                    </StackPanel>
                    </StackPanel>

37
            <Button Style="{StaticResource Styles.Button.Apply}" Click="button_apply_Click" />
潘栩锋's avatar
潘栩锋 committed
38 39 40 41
                </StackPanel>
            </Grid>

</flyctrllib:WindowBigClose>