WdThickScale.xaml 2.48 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1
<flyctrllib:WindowBigClose x:Class="FLY.Thick.Base.UI.WdThickScale"
潘栩锋'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"
潘栩锋's avatar
潘栩锋 committed
6 7 8 9 10 11
        Title="Window_graphfix" mc:Ignorable="d" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" SizeToContent="WidthAndHeight"  >
    <Window.Resources>
        <ResourceDictionary>
            <local:BytesConverter x:Key="bytesconv"/>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="pack://application:,,,/FLY.ControlLibrary;component/Themes/Dictionary_MyStyle.xaml"/>
潘栩锋's avatar
潘栩锋 committed
12
                <!--<ResourceDictionary Source="pack://application:,,,/FLY.Thick.Base.UI;component/Culture/StringResource.zh-CN.xaml"/>-->
潘栩锋's avatar
潘栩锋 committed
13 14 15 16 17 18 19
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Window.Resources>

    <Grid TextBlock.FontSize="24" TextBlock.FontStyle="Normal" >
        <StackPanel Orientation="Vertical" Margin="5,20">
            <StackPanel Orientation="Horizontal">
20 21
                <StackPanel Orientation="Vertical" Margin="{StaticResource ControlMargin}">
                    <TextBlock Style="{StaticResource Styles.Text.FieldHeader}" Text="显示值" />
潘栩锋's avatar
潘栩锋 committed
22
                    <StackPanel Orientation="Horizontal">
潘栩锋's avatar
潘栩锋 committed
23
                        <TextBox Style="{StaticResource Styles.Text.FieldContent.Input}" Text="{Binding Old}"    MinWidth="150" />
潘栩锋's avatar
潘栩锋 committed
24 25
                    </StackPanel>
                </StackPanel>
26 27
                <TextBlock Style="{StaticResource Styles.Text.FieldHeader}" Text="->" VerticalAlignment="Center" />
                <StackPanel Orientation="Vertical" Margin="{StaticResource ControlMargin}">
潘栩锋's avatar
潘栩锋 committed
28
                    <TextBlock Style="{StaticResource Styles.Text.FieldHeader.Editable}" Text="实际值" />
潘栩锋's avatar
潘栩锋 committed
29
                    <StackPanel Orientation="Horizontal">
潘栩锋's avatar
潘栩锋 committed
30
                        <TextBox Style="{StaticResource Styles.Text.FieldContent.Input}" Text="{Binding New}" MinWidth="150"/>
潘栩锋's avatar
潘栩锋 committed
31 32 33 34
                    </StackPanel>
                </StackPanel>
            </StackPanel>

35
            <Button Content="应用"  Style="{StaticResource  ButtonStyle2}"  Margin="{StaticResource ControlMargin}" Width="auto" Click="button_apply_Click" />
潘栩锋's avatar
潘栩锋 committed
36 37 38 39
        </StackPanel>
    </Grid>

</flyctrllib:WindowBigClose>