HomePageEntry.xaml 1.8 KB

12345678910111213141516171819202122232425
  1. <UserControl x:Class="AIRS.usercontrol.HomePageEntry"
  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.usercontrol"
  7. mc:Ignorable="d"
  8. d:DesignHeight="60" d:DesignWidth="235" >
  9. <Grid>
  10. <Canvas x:Name="homepagecanvas" Width="235" Background="#40FFFFFF">
  11. <Canvas x:Name="c_header" Width="235" Height="20" Canvas.Top="0" Canvas.Left="0">
  12. <Label Content="检验仪器:" HorizontalContentAlignment="Left" Canvas.Top="0" Canvas.Left="3" Width="55" Height="20" Foreground="White" Padding="0,2,0,0"></Label>
  13. <Label x:Name="lbltestmechine" HorizontalContentAlignment="Left" Canvas.Top="0" Canvas.Left="60" Width="175" Foreground="White" Padding="0,2,0,0">
  14. <TextBlock x:Name="txttestmechine" TextWrapping="Wrap" Foreground="White" ></TextBlock>
  15. </Label>
  16. </Canvas>
  17. <Canvas x:Name="c_footer" Width="235" Height="20" Canvas.Top="22" Canvas.Left="0">
  18. <Label x:Name="foot_lbl" Content="图片目录:" HorizontalContentAlignment="Left" Canvas.Top="0" Canvas.Left="3" Width="55" Height="20" Foreground="White" Padding="0,2,0,0"></Label>
  19. <Label x:Name="lblpicpath" HorizontalContentAlignment="Left" Canvas.Top="0" Canvas.Left="60" Width="175" Padding="0,2,0,0">
  20. <TextBlock x:Name="txtpicpath" TextWrapping="Wrap" Text="" Foreground="White" Width="175" ></TextBlock>
  21. </Label>
  22. </Canvas>
  23. </Canvas>
  24. </Grid>
  25. </UserControl>