| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <UserControl x:Class="ivf_tl_Manage.UserControls.MarkDetailUserControl"
- 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_Manage.UserControls"
- xmlns:customControl="clr-namespace:ivf_tl_CustomControls;assembly=ivf_tl_CustomControls_PC"
- mc:Ignorable="d"
- FontFamily="{StaticResource sourceHan}"
- FocusVisualStyle="{x:Null}"
- Width="453" Height="952"
- x:Name="_MarkDetailUserControl">
- <Grid Width="453" Height="952">
- <Grid.RowDefinitions>
- <RowDefinition Height="76"/>
- <RowDefinition Height="769"/>
- <RowDefinition Height="107"/>
- </Grid.RowDefinitions>
- <Canvas Height="76" Grid.Row="0" >
- <Canvas.Background>
- <ImageBrush ImageSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/MarkDetailTopBackground.png"/>
- </Canvas.Background>
- <Grid Canvas.Left="40" Canvas.Top="34" >
- <TextBlock Margin="2 0 2 0" Height="35" Text="{Binding ElementName=_MarkDetailUserControl,Path=MarkSource.name}" FontWeight="Medium" FontSize="24"/>
- <Rectangle Height="2" Fill="#4D75AC" Margin="0 40 0 0" VerticalAlignment="Bottom" RadiusX="1" RadiusY="1"/>
- </Grid>
- <customControl:ButtonImage Visibility="Hidden" Canvas.Left="397" Canvas.Top="40" Width="18" Height="18" Click="Cancel_Click"
- IconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/CloseGrayIcon.png"/>
- </Canvas>
- <Canvas Grid.Row="1" Width="453" Height="769" >
- <Canvas.Background>
- <ImageBrush ImageSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/MarkDetailCenterBackground.png"/>
- </Canvas.Background>
- <ScrollViewer Canvas.Top="20" Canvas.Left="20" Width="413" Height="749" PanningMode="Both" FocusVisualStyle="{x:Null}"
- HorizontalScrollBarVisibility="Disabled" ManipulationBoundaryFeedback="ScrollViewer_ManipulationBoundaryFeedback" VerticalScrollBarVisibility="Auto">
- <Grid x:Name="_markNewView_Grid">
- </Grid>
- </ScrollViewer>
- </Canvas>
- <Canvas Grid.Row="2" Height="107">
- <Canvas.Background>
- <ImageBrush ImageSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/MarkDetailBottomBackground.png"/>
- </Canvas.Background>
- <customControl:ButtonCornerRadius Visibility="Hidden" Canvas.Left="209" Width="104" Height="56" Click="Cancel_Click" Content="{DynamicResource 0025}" Foreground="#717171" FontSize="14" MarginMask="10">
- <customControl:ButtonCornerRadius.Background>
- <ImageBrush ImageSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/CancelButtonIcon1.png"/>
- </customControl:ButtonCornerRadius.Background>
- </customControl:ButtonCornerRadius>
- <!--<customControl:ButtonImage Canvas.Left="209" Width="104" Height="56" Click="Cancel_Click" Visibility="Hidden"
- IconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/CancelButtonIcon.png"/>-->
- <customControl:ButtonCornerRadius Canvas.Left="317" Width="104" Height="56" Click="Ok_Click" Content="{DynamicResource 0024}" FontSize="14" MarginMask="10">
- <customControl:ButtonCornerRadius.Background>
- <ImageBrush ImageSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/OkButtonIcon1.png"/>
- </customControl:ButtonCornerRadius.Background>
- </customControl:ButtonCornerRadius>
- <!--<customControl:ButtonImage Canvas.Left="317" Width="104" Height="56" Click="Ok_Click" IconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/OkButtonIcon.png" MouseOverIconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/OkButtonMouseOverIcon.png"/>-->
- </Canvas>
- </Grid>
- </UserControl>
|