UCTaskItem.xaml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <UserControl x:Class="MeterVision.Patch.UCTaskItem"
  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-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:MeterVision.Patch"
  7. mc:Ignorable="d"
  8. Background="White"
  9. Margin="5"
  10. d:DesignHeight="200" d:DesignWidth="300">
  11. <Grid>
  12. <StackPanel Orientation="Vertical" VerticalAlignment="Top" Margin="5">
  13. <Border HorizontalAlignment="Stretch" BorderBrush="SteelBlue" BorderThickness="0 0 0 1" >
  14. <StackPanel Orientation="Vertical" VerticalAlignment="Center">
  15. <TextBlock Text="第五轮AI模型测试" FontWeight="Bold" HorizontalAlignment="Center"
  16. Foreground="#000000" FontSize="14px" VerticalAlignment="Center" Margin="0 5 0 0" />
  17. <TextBlock Text="2024-10-21 10:34:35" FontSize="13px" TextAlignment="Center"
  18. Foreground="#333333" Margin="0 5 0 5"/>
  19. </StackPanel>
  20. </Border>
  21. <StackPanel Orientation="Vertical">
  22. <StackPanel Orientation="Horizontal" Height="26" Margin="0">
  23. <TextBlock Text="标准条目数:" TextAlignment="Left" FontSize="14px" VerticalAlignment="Center" Width="90"/>
  24. <TextBlock Text="134569" Width="100" TextAlignment="Left" FontSize="14px" Foreground="#000000" VerticalAlignment="Center"/>
  25. </StackPanel>
  26. </StackPanel>
  27. <StackPanel Orientation="Vertical">
  28. <StackPanel Orientation="Horizontal" Height="26" Margin="0">
  29. <TextBlock Text="已完成识别:" TextAlignment="Left" FontSize="14px" VerticalAlignment="Center" Width="90"/>
  30. <TextBlock Text="0" Width="100" TextAlignment="Left" FontSize="14px" Foreground="#000000" VerticalAlignment="Center"/>
  31. </StackPanel>
  32. </StackPanel>
  33. <StackPanel Orientation="Vertical">
  34. <StackPanel Orientation="Horizontal" Height="26" Margin="0">
  35. <TextBlock Text="核对一致数:" TextAlignment="Left" FontSize="14px" VerticalAlignment="Center" Width="90"/>
  36. <TextBlock Text="134569" Width="100" TextAlignment="Left" FontSize="14px" Foreground="#000000" VerticalAlignment="Center"/>
  37. </StackPanel>
  38. </StackPanel>
  39. <StackPanel Orientation="Vertical">
  40. <StackPanel Orientation="Horizontal" Height="26" Margin="0">
  41. <TextBlock Text="已核正确率:" TextAlignment="Left" FontSize="14px" VerticalAlignment="Center" Width="90"/>
  42. <TextBlock Text="100" Width="25" TextAlignment="Left" FontSize="14px" Foreground="#000000" VerticalAlignment="Center"/>
  43. <TextBlock Text="%" Width="30" TextAlignment="Left" FontSize="14px" Foreground="#333333" VerticalAlignment="Center"/>
  44. </StackPanel>
  45. </StackPanel>
  46. <StackPanel Orientation="Vertical">
  47. <StackPanel Orientation="Horizontal" Height="26" Margin="0">
  48. <TextBlock Text="总量正确率:" TextAlignment="Left" FontSize="14px" VerticalAlignment="Center" Width="90"/>
  49. <TextBlock Text="100" Width="25" TextAlignment="Left" FontSize="14px" Foreground="#000000" VerticalAlignment="Center"/>
  50. <TextBlock Text="%" Width="30" TextAlignment="Left" FontSize="14px" Foreground="#333333" VerticalAlignment="Center"/>
  51. </StackPanel>
  52. </StackPanel>
  53. </StackPanel>
  54. </Grid>
  55. </UserControl>