SubTitleControl.xaml 2.4 KB

123456789101112131415161718192021222324252627
  1. <UserControl x:Class="AIRS.SubTitleControl"
  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:AIRS"
  7. mc:Ignorable="d"
  8. d:DesignHeight="40" d:DesignWidth="1350">
  9. <Grid>
  10. <Canvas Background="#FF173E73">
  11. <!--<Label x:Name="lbltestprog" Content="检测项目:石墨形状" Canvas.Left="10" Canvas.Top="0" Foreground="White" FontSize="18" Height="40" HorizontalContentAlignment="Left" VerticalContentAlignment="Center" Width="200"/>-->
  12. <Label x:Name="lblfilecount" Content="欢迎使用AI金相分析平台!选择检测项目" Visibility="Visible" Canvas.Left="10" Canvas.Top="0"
  13. Foreground="White" FontSize="18" Height="40" HorizontalContentAlignment="Left" VerticalContentAlignment="Center" Width="345"/>
  14. <Label x:Name="lblzoom" Content="zoom" Visibility="Hidden" Canvas.Left="295" Canvas.Top="0" Foreground="White" FontSize="18" Height="40"
  15. HorizontalContentAlignment="Left" VerticalContentAlignment="Center" Width="60"/>
  16. <Label x:Name="lblpercentge" Content="100%" Canvas.Left="480" Visibility="Hidden" Canvas.Top="0" Foreground="White" FontSize="16" Height="40"
  17. HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Width="60"/>
  18. <Slider x:Name="sldzoom" Maximum="3" Minimum="0.1" Value="1" Visibility="Hidden" Canvas.Left="360" Canvas.Top="14" Background="#FF173E73"
  19. Width="120" LargeChange="0.1" Style="{StaticResource SliderStyle}" ValueChanged="sldzoom_ValueChanged"/>
  20. <Label x:Name="lblverson" Content="V1.0.0.20200508" Canvas.Left="800" Canvas.Top="0" Foreground="White" FontSize="18" Height="40"
  21. HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Width="170"/>
  22. <Label x:Name="lblcompany" Content="汇鸿智能科技(辽宁)有限公司" Canvas.Left="1070" Canvas.Top="0" Foreground="White" FontSize="18" Height="40"
  23. HorizontalContentAlignment="Right" VerticalContentAlignment="Center" Width="270"/>
  24. </Canvas>
  25. </Grid>
  26. </UserControl>