StationV.xaml 1.26 KB
<UserControl x:Class="HHECS.Controls.StationV"
             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:HHECS.Controls"
             mc:Ignorable="d" Height="164.017" Width="96.102">
    <Grid>
        <Viewbox Stretch=" fill">
            <Canvas   Height="164.017" Width="96.102">
                <Canvas.Background>
                    <!--<ImageBrush ImageSource="pack://application:,,,/Content/Device/pBSTA_V.Image.jpg" />-->
                    <SolidColorBrush Color="Aqua"/>
                </Canvas.Background>
                <Label x:Name="lab_To"  Content="目的地址" Canvas.Left="9" Canvas.Top="22" FontSize="20" Foreground="Blue"/>
                <Rectangle x:Name="r_status" Height="19" Canvas.Left="11" Stroke="Black" Canvas.Top="135" Width="75" StrokeThickness="0" Fill="White"/>
                <Label x:Name="lab_pallet" Content="托盘" Canvas.Left="9" Canvas.Top="72" FontSize="20" Foreground="Green"/>
            </Canvas>
        </Viewbox>
    </Grid>
</UserControl>