OrderControl.xaml 1.6 KB

123456789101112131415
  1. <UserControl x:Class="ivf_tl_Manage.UserControls.OrderControl"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibilsity/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:ivf_tl_Manage.UserControls"
  7. >
  8. <StackPanel FlowDirection="RightToLeft" HorizontalAlignment="Right" Orientation="Horizontal" Background="Transparent" MouseLeftButtonDown="StackPanel_MouseLeftButtonDown">
  9. <StackPanel Width="23" DockPanel.Dock="Right" Orientation="Vertical" Background="Transparent" VerticalAlignment="Center" >
  10. <Image x:Name="img_up" Width="13" Height="7" MouseLeftButtonDown="img_up_MouseLeftButtonDown" Panel.ZIndex="19" Source="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/orderControl_gray_up.png" Stretch="Fill" ></Image>
  11. <Image Margin="0 10 0 0" x:Name="img_dwon" Width="13" Height="7" MouseLeftButtonDown="img_dwon_MouseLeftButtonDown" Panel.ZIndex="19" Source="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/orderControl_gray_dwon.png" Stretch="Fill"></Image>
  12. </StackPanel>
  13. <TextBlock Margin="8 0 0 0" MaxWidth="130" Background="Transparent" DockPanel.Dock="Left" TextWrapping="Wrap" TextAlignment="Center" x:Name="btn_order" FontSize="16" VerticalAlignment="Center" Foreground="#4D4D4D" FontWeight="DemiBold" FlowDirection="LeftToRight"></TextBlock>
  14. </StackPanel>
  15. </UserControl>