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