PgMenu.xaml 3.43 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1
<Page x:Class="FLY.IBC.UI.Client.PgMenu"
潘栩锋's avatar
潘栩锋 committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
      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.IBC.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.MergedDictionaries>
潘栩锋's avatar
潘栩锋 committed
17
            <misc:Ver x:Key="version" SrcType="{x:Type local:PgMenu}"/>
潘栩锋's avatar
潘栩锋 committed
18 19 20 21 22 23 24 25 26 27 28 29 30
        </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}">
潘栩锋's avatar
潘栩锋 committed
31
                <Button Style="{StaticResource ButtonStyle_empty}" Background="{x:Null}" VerticalAlignment="Center">
潘栩锋's avatar
潘栩锋 committed
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
                    <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 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_system_Click" >
                        <TextBlock FontWeight="Bold" FontFamily="YouYuan" VerticalAlignment="Center">
                    <Run Foreground="White" FontSize="40"  Text="IBC参数"/>
                        </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>
                </WrapPanel>
            </Grid>
        </ScrollViewer>


    </Grid>
</Page>