PgMenuV4.xaml 7.6 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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
<Page x:Class="FLY.Weight.UI.Client.PgMenuV4"
      xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
      xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
      xmlns:local="clr-namespace:FLY.Weight.UI.Client"
      xmlns:misc="clr-namespace:Misc;assembly=MISC"
      mc:Ignorable="d" 
      d:DesignHeight="768" d:DesignWidth="1388" 
      Background="White"
      Title="Page_Menu">

    <Page.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="pack://application:,,,/FLY.ControlLibrary;component/Themes/Dictionary_MyStyle.xaml"/>
                <ResourceDictionary Source="pack://application:,,,/FLY.Weight.UI.Client;component/Converter/Dictionary_MyConv.xaml"/>
                <ResourceDictionary Source="pack://application:,,,/FLY.Weight.UI.Client;component/UnitTests/UnitTests_Weights.xaml"/>
            </ResourceDictionary.MergedDictionaries>
            <misc:Ver x:Key="version" SrcType="{x:Type local:PgMenu}"/>
        </ResourceDictionary>
    </Page.Resources>
    <Grid >
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto" />
            <RowDefinition Height="540*" />
        </Grid.RowDefinitions>

        <StackPanel Orientation="Horizontal">
            <Button Style="{StaticResource ButtonStyle_back}" Command="BrowseBack"/>
        </StackPanel>
        <StackPanel Orientation="Horizontal" FlowDirection="RightToLeft">
            <StackPanel Orientation="Vertical" DataContext="{StaticResource version}">
                <Button Style="{StaticResource ButtonStyle_empty}" Background="{x:Null}" Click="button_version_Click" VerticalAlignment="Center">
                    <TextBlock Text="{Binding .}" FontSize="24" FontWeight="Bold" Margin="15" />
                </Button>
            </StackPanel>
        </StackPanel>
        <ScrollViewer Grid.Row="1" VerticalScrollBarVisibility="Disabled" HorizontalScrollBarVisibility="Auto">
            <Grid>
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="100" />
                    <ColumnDefinition />
                </Grid.ColumnDefinitions>
                <Grid.RowDefinitions>

                    <RowDefinition />
                    <RowDefinition Height="100" />
                </Grid.RowDefinitions>
                <WrapPanel x:Name="wrappanel_root" Orientation="Vertical" Grid.Column="1" d:DataContext="{StaticResource unittests_weighters}">
                    <WrapPanel.Resources>
                        <Style TargetType="Button" BasedOn="{StaticResource ResourceKey=ButtonStyle_empty}">
                            <Setter Property="Background" Value="#FF0083D7"/>
                            <Setter Property="Width" Value="225"/>
                            <Setter Property="Height" Value="140"/>
                            <Setter Property="Margin" Value="5"/>
                        </Style>
                    </WrapPanel.Resources>
                    <Button Click="button_ingredient_Click">
                        <Grid>
                            <TextBlock FontWeight="Bold" FontFamily="YouYuan" VerticalAlignment="Center" Foreground="White" FontSize="40"  Text="配料参数" Background="#C00083D7" Padding="10"/>
                        </Grid>
                    </Button>
                    <Button Click="button_screw_Click" >
                        <TextBlock FontWeight="Bold" FontFamily="YouYuan" VerticalAlignment="Center">
                            <Run Foreground="White" FontSize="40"  Text="螺杆参数"/>
                        </TextBlock>
                    </Button>
                    <Button Click="button_hopper_Click" >
                        <TextBlock FontWeight="Bold" FontFamily="YouYuan" VerticalAlignment="Center">
                            <Run Foreground="White" FontSize="40"  Text="基本参数"/>
                        </TextBlock>
                    </Button>
                    <Button Click="btnReductClick" >
                        <TextBlock FontWeight="Bold" FontFamily="YouYuan" VerticalAlignment="Center">
                            <Run Foreground="White" FontSize="40"  Text="精减参数"/>
                        </TextBlock>
                    </Button>
                    <Button Click="button_error_Click" Background="Red"  >
                        <Grid>
                            <TextBlock FontWeight="Bold" FontFamily="YouYuan" VerticalAlignment="Center" Foreground="White" FontSize="40"  Text="报警管理"  Padding="10"/>
                        </Grid>
                    </Button>
                    <Button Click="button_flow_Click" >
                        <TextBlock FontWeight="Bold" FontFamily="YouYuan" VerticalAlignment="Center">
                            <Run Foreground="White" FontSize="40"  Text="流量记录"/>
                        </TextBlock>
                    </Button>
                    <ItemsControl ItemsSource="{Binding Items}" Margin="20,0">
                        <ItemsControl.ItemsPanel>
                            <ItemsPanelTemplate>
                                <WrapPanel Orientation="Vertical" />
                            </ItemsPanelTemplate>
                        </ItemsControl.ItemsPanel>
                        <ItemsControl.ItemTemplate>
                            <DataTemplate>
                                <Button Click="button_mixtable_Click" Tag="{Binding .}" Background="{Binding Color}">
                                    <Grid SnapsToDevicePixels="true" Margin="10,0">
                                        <TextBlock FontWeight="Bold"  VerticalAlignment="Center">
                                            <Run Foreground="White" FontSize="40"  Text="{Binding Number}" FontWeight="Bold"/>
                                            <Run Foreground="White" FontSize="40" FontFamily="YouYuan" Text="配料记录"/>
                                        </TextBlock>
                                       
                                    </Grid>
                                </Button>
                            </DataTemplate>
                        </ItemsControl.ItemTemplate>
                    </ItemsControl>
                    <ItemsControl ItemsSource="{Binding Items}" Margin="20,0">
                        <ItemsControl.ItemsPanel>
                            <ItemsPanelTemplate>
                                <WrapPanel Orientation="Vertical" />
                            </ItemsPanelTemplate>
                        </ItemsControl.ItemsPanel>
                        <ItemsControl.ItemTemplate>
                            <DataTemplate>
                                <Button Click="button_rollmixtable_Click" Tag="{Binding .}" Background="{Binding Color}">
                                    <Grid SnapsToDevicePixels="true" Margin="10,0">
                                        <TextBlock FontWeight="Bold"  VerticalAlignment="Center">
                                            <Run Foreground="White" FontSize="40"  Text="{Binding Number}" FontWeight="Bold"/>
                                            <Run Foreground="White" FontSize="40" FontFamily="YouYuan" Text="累计记录"/>
                                        </TextBlock>

                                    </Grid>
                                </Button>
                            </DataTemplate>
                        </ItemsControl.ItemTemplate>
                    </ItemsControl>
                </WrapPanel>
            </Grid>
        </ScrollViewer>


    </Grid>
</Page>