123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <UserControl x:Class="MeterVision.Patch.UCTaskItem"
- 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:MeterVision.Patch"
- mc:Ignorable="d"
- Background="White"
- Margin="5"
- d:DesignHeight="200" d:DesignWidth="300">
- <Grid>
- <StackPanel Orientation="Vertical" VerticalAlignment="Top" Margin="5">
- <Border HorizontalAlignment="Stretch" BorderBrush="SteelBlue" BorderThickness="0 0 0 1" >
- <StackPanel Orientation="Vertical" VerticalAlignment="Center">
- <TextBlock Text="第五轮AI模型测试" FontWeight="Bold" HorizontalAlignment="Center"
- Foreground="#000000" FontSize="14px" VerticalAlignment="Center" Margin="0 5 0 0" />
- <TextBlock Text="2024-10-21 10:34:35" FontSize="13px" TextAlignment="Center"
- Foreground="#333333" Margin="0 5 0 5"/>
- </StackPanel>
- </Border>
- <StackPanel Orientation="Vertical">
- <StackPanel Orientation="Horizontal" Height="26" Margin="0">
- <TextBlock Text="标准条目数:" TextAlignment="Left" FontSize="14px" VerticalAlignment="Center" Width="90"/>
- <TextBlock Text="134569" Width="100" TextAlignment="Left" FontSize="14px" Foreground="#000000" VerticalAlignment="Center"/>
- </StackPanel>
- </StackPanel>
- <StackPanel Orientation="Vertical">
- <StackPanel Orientation="Horizontal" Height="26" Margin="0">
- <TextBlock Text="已完成识别:" TextAlignment="Left" FontSize="14px" VerticalAlignment="Center" Width="90"/>
- <TextBlock Text="0" Width="100" TextAlignment="Left" FontSize="14px" Foreground="#000000" VerticalAlignment="Center"/>
- </StackPanel>
- </StackPanel>
- <StackPanel Orientation="Vertical">
- <StackPanel Orientation="Horizontal" Height="26" Margin="0">
- <TextBlock Text="核对一致数:" TextAlignment="Left" FontSize="14px" VerticalAlignment="Center" Width="90"/>
- <TextBlock Text="134569" Width="100" TextAlignment="Left" FontSize="14px" Foreground="#000000" VerticalAlignment="Center"/>
- </StackPanel>
- </StackPanel>
- <StackPanel Orientation="Vertical">
- <StackPanel Orientation="Horizontal" Height="26" Margin="0">
- <TextBlock Text="已核正确率:" TextAlignment="Left" FontSize="14px" VerticalAlignment="Center" Width="90"/>
- <TextBlock Text="100" Width="25" TextAlignment="Left" FontSize="14px" Foreground="#000000" VerticalAlignment="Center"/>
- <TextBlock Text="%" Width="30" TextAlignment="Left" FontSize="14px" Foreground="#333333" VerticalAlignment="Center"/>
- </StackPanel>
- </StackPanel>
- <StackPanel Orientation="Vertical">
- <StackPanel Orientation="Horizontal" Height="26" Margin="0">
- <TextBlock Text="总量正确率:" TextAlignment="Left" FontSize="14px" VerticalAlignment="Center" Width="90"/>
- <TextBlock Text="100" Width="25" TextAlignment="Left" FontSize="14px" Foreground="#000000" VerticalAlignment="Center"/>
- <TextBlock Text="%" Width="30" TextAlignment="Left" FontSize="14px" Foreground="#333333" VerticalAlignment="Center"/>
- </StackPanel>
- </StackPanel>
- </StackPanel>
- </Grid>
- </UserControl>
|