<Page x:Class="FLY.Thick.BlowingScan.UI.Client.PgMenu" 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:misc="clr-namespace:Misc;assembly=MISC" xmlns:local="clr-namespace:FLY.Thick.BlowingScan.UI.Client" 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.Thick.Base.UI;component/Converter/Dictionary_MyConv.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 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> <Button Style="{StaticResource ButtonStyle_empty}" Background="{x:Null}" Click="button_instruction_Click" VerticalAlignment="Center"> <TextBlock Text="说明书" 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 Orientation="Vertical" Grid.Column="1"> <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_initparam_Click" > <Grid> <Image Source="/FLY.Thick.Base.UI;component/Images/bg_wheel.jpg" Stretch="UniformToFill" /> <TextBlock FontWeight="Bold" FontFamily="YouYuan" VerticalAlignment="Center" Foreground="White" FontSize="40" Text="系统参数" Background="#C00083D7" Padding="10"/> </Grid> </Button> <Button Click="button_blowing_Click" > <Grid> <Image Source="/FLY.Thick.Base.UI;component/Images/bg_blowing.jpg" Stretch="UniformToFill" /> <TextBlock FontWeight="Bold" FontFamily="YouYuan" VerticalAlignment="Center" Foreground="White" FontSize="40" Text="吹膜测厚" Background="#C00083D7" Padding="10"/> </Grid> </Button> <Button Click="button_curve_Click" > <TextBlock FontWeight="Bold" FontFamily="YouYuan" VerticalAlignment="Center"> <Run Foreground="White" FontSize="40" Text="AD曲线"/> </TextBlock> </Button> <Button Click="button_bordersearch_Click" > <TextBlock FontWeight="Bold" FontFamily="YouYuan" VerticalAlignment="Center"> <Run Foreground="White" FontSize="40" Text="边界查找"/> </TextBlock> </Button> <Button Click="button_getsample_Click" > <Grid> <Image Source="/FLY.Thick.Base.UI;component/Images/bg_sample.jpg" Stretch="UniformToFill" /> <TextBlock FontWeight="Bold" FontFamily="YouYuan" VerticalAlignment="Center" Foreground="White" FontSize="40" Text="样品标定" Background="#C00083D7" Padding="10"/> </Grid> </Button> <Button Click="button_gageinfo_Click" > <TextBlock FontWeight="Bold" FontFamily="YouYuan" VerticalAlignment="Center"> <Run Foreground="White" FontSize="40" Text="机架信息"/> </TextBlock> </Button> <Button Click="button_scancorr_Click" > <TextBlock FontWeight="Bold" FontFamily="YouYuan" VerticalAlignment="Center"> <Run Foreground="White" FontSize="40" Text="机架修正"/> </TextBlock> </Button> <Button Click="button_warning_Click" Background="Red" > <Grid> <TextBlock FontWeight="Bold" FontFamily="YouYuan" VerticalAlignment="Center" Foreground="White" FontSize="40" Text="报警管理" Padding="10"/> </Grid> </Button> <Button Click="button_scanwarning_Click" Background="DarkRed" > <Grid> <TextBlock FontWeight="Bold" FontFamily="YouYuan" VerticalAlignment="Center" Foreground="White" FontSize="40" Text="厚度报警" Padding="10"/> </Grid> </Button> <Button Click="button_grid_Click" > <TextBlock FontWeight="Bold" FontFamily="YouYuan" VerticalAlignment="Center" > <Run Foreground="White" FontSize="40" Text="机架调试"/> </TextBlock> </Button> <Button Click="button_flyad_Click"> <Grid> <Image Source="/FLY.Thick.Base.UI;component/Images/bg_chip.jpg" Stretch="UniformToFill" /> <TextBlock FontWeight="Bold" FontFamily="YouYuan" VerticalAlignment="Center" Foreground="White" FontSize="40" Text="控制器" Background="#C00083D7" Padding="10"/> </Grid> </Button> </WrapPanel> </Grid> </ScrollViewer> </Grid> </Page>