| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <UserControl x:Class="ivf_tl_Operate.View.AlarmPageView"
- 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:ivf_tl_Operate.View"
- xmlns:customControl="clr-namespace:ivf_tl_CustomControls;assembly=ivf_tl_CustomControls_Surface"
- xmlns:customUserControl="clr-namespace:ivf_tl_Operate.CustomUserControls"
- mc:Ignorable="d"
- Height="2736" Width="1824">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="250"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
- <!--顶部信息-->
- <Border Grid.Row="0" Background="{StaticResource BannerTopFill}">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="350"/>
- <ColumnDefinition Width="1"/>
- <ColumnDefinition Width="1"/>
- <ColumnDefinition/>
- <ColumnDefinition Width="414"/>
- </Grid.ColumnDefinitions>
- <customControl:ButtonLeftImage Grid.Column="0" Content="{DynamicResource C0044}" Click="Return_Click" Width="350" Height="250" IconWidth="46" IconHeight="46" FontSize="44" FontWeight="Medium" Foreground="#4D75AC" BorderThickness="0" Background="Transparent" IconSource="/ivf_tl_Operate;component/Resources/Image/button_return.png" IconMargin="0 0 10 0"/>
- <Border Grid.Column="1" Background="#FFFFFF"/>
- <Border Grid.Column="2" Background="#DFE0E4"/>
- <StackPanel Grid.Column="3" Orientation="Horizontal">
- <Border Grid.Column="3" Width="409" Height="133" Margin="100 0 0 0" MouseUp="Border_MouseUp" >
- <Border.Background>
- <ImageBrush ImageSource="/ivf_tl_Operate;component/Resources/Image/chart_date.png" Stretch="UniformToFill"/>
- </Border.Background>
- <TextBlock Text="{Binding LeftDateString}" VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="50" Foreground="Gray"/>
- </Border>
- <TextBlock Grid.Column="4" Text="-" VerticalAlignment="Center" HorizontalAlignment="Center" Foreground="#B0B4B9" FontSize="44" Margin="20 0 20 0"/>
- <Border Grid.Column="5" Width="409" Height="133" MouseUp="Border_MouseUp_GetRightDate" >
- <Border.Background>
- <ImageBrush ImageSource="/ivf_tl_Operate;component/Resources/Image/chart_date.png" Stretch="UniformToFill"/>
- </Border.Background>
- <TextBlock Text="{Binding RightDateString}" VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="50" Foreground="Gray"/>
- </Border>
- </StackPanel>
- <customControl:ButtonLeftImage TextWrap="Wrap" x:Name="Button_His" Grid.Column="4" FocusVisualStyle="{x:Null}" Content="{DynamicResource C0156}" Click="ButtonImage_Click" Tag="false" Width="350" Height="250" IconWidth="46" IconHeight="46" FontSize="44" FontWeight="Medium" Foreground="#4D75AC" BorderThickness="0" Background="Transparent" IconSource="/ivf_tl_Operate;component/Resources/Image/AlarmHistroyIcon.png" IconMargin="0 0 20 0"/>
- <!--<customUserControl:ButtonImage x:Name="_his_ButtonImage" Grid.Column="4" Click="ButtonImage_Click" Tag="false" IconSource="/ivf_tl_Operate;component/Resources/Image/AlarmHistroyIcon.png" IconWidth="46" IconHeight="46" Content="历史记录" FontSize="44" Foreground="#4D75AC" BorderThickness="0" Height="80" IconMargin="0 0 20 0" Background="Transparent"/>-->
- </Grid>
- </Border>
- <Grid Grid.Row="1" >
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="auto"/>
- </Grid.RowDefinitions>
- <!--列表-->
- <StackPanel Orientation="Vertical" x:Name="_container" Width="{Binding ElementName=_scrollViewer, Path=Width, Mode=OneWay}"/>
- <customUserControl:CustomControlPagination Grid.Row="1" PageChangedEvent="CustomControlPagination_PageChangedEvent" Width="1824" Height="236" CountNum="{Binding DataCount}" PageNum="{Binding PageSize}"/>
- </Grid>
- </Grid>
- </UserControl>
|