Page_FirstControl.xaml 4.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <UserControl x:Class="AIRS.usercontrol.Page_FirstControl"
  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="660" d:DesignWidth="1350" Background="#FF18253C" Loaded="userControlLoader">
  9. <Grid>
  10. <Canvas x:Name="firstpage" Width="1350" Height="660" HorizontalAlignment="Left" Canvas.Top="140" Canvas.Left="0">
  11. <Ellipse Fill="DeepSkyBlue" Height="50" VerticalAlignment="Top" Width="50" Canvas.Left="45" Canvas.Top="60"/>
  12. <Label Content="1" Foreground="White" Canvas.Left="45" Canvas.Top="60" Height="50" Width="50" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" FontSize="32"/>
  13. <Label Content="评级钢种" Foreground="White" Canvas.Left="70" Canvas.Top="53" Height="70" Width="200" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" FontSize="34"/>
  14. <Ellipse Fill="DeepSkyBlue" Height="50" VerticalAlignment="Top" Width="50" Canvas.Left="360" Canvas.Top="60"/>
  15. <Label Content="2" Foreground="White" Canvas.Left="360" Canvas.Top="60" Height="50" Width="50" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" FontSize="32"/>
  16. <Label Content="评级标准" Foreground="White" Canvas.Left="385" Canvas.Top="53" Height="70" Width="200" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" FontSize="34"/>
  17. <Ellipse Fill="DeepSkyBlue" Height="50" VerticalAlignment="Top" Width="50" Canvas.Left="675" Canvas.Top="60"/>
  18. <Label Content="3" Foreground="White" Canvas.Left="675" Canvas.Top="60" Height="50" Width="50" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" FontSize="32"/>
  19. <Label Content="检测项目" Foreground="White" Canvas.Left="700" Canvas.Top="53" Height="70" Width="200" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" FontSize="34"/>
  20. <Ellipse Fill="DeepSkyBlue" Height="50" VerticalAlignment="Top" Width="50" Canvas.Left="990" Canvas.Top="60"/>
  21. <Label Content="4" Foreground="White" Canvas.Left="990" Canvas.Top="60" Height="50" Width="50" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" FontSize="32"/>
  22. <Label Content="试样信息" Foreground="White" Canvas.Left="1015" Canvas.Top="53" Height="70" Width="200" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" FontSize="34"/>
  23. <TextBlock x:Name="txtinput" Text="录入" Canvas.Left="1050" Canvas.Top="145" Foreground="#FF02A7F0" FontSize="22" TextDecorations="Underline" />
  24. </Canvas>
  25. <Canvas>
  26. <ScrollViewer x:Name="Scrviewer_Steel" Width="250" Height="2000" Canvas.Top="140" Canvas.Left="30" Background="#00000000" HorizontalAlignment="Left" HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Disabled" >
  27. <Canvas x:Name="Can_Steel" Width="250" Height="6" HorizontalAlignment="Left" VerticalAlignment="Top" Background="#FF18253C" />
  28. </ScrollViewer>
  29. <ScrollViewer x:Name="Scrviewer_Standard" Width="250" Height="2000" Canvas.Top="140" Canvas.Left="350" HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Disabled" >
  30. <Canvas x:Name="Can_Standard" Width="250" Height="26" HorizontalAlignment="Left" VerticalAlignment="Top" Background="#FF18253C"/>
  31. </ScrollViewer>
  32. <ScrollViewer x:Name="Scrviewer_Testitems" Width="270" Height="2000" Canvas.Top="140" Canvas.Left="670" HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Disabled" >
  33. <Canvas x:Name="Can_Testitems" Width="270" Height="26" HorizontalAlignment="Left" VerticalAlignment="Top" Background="#FF18253C"/>
  34. </ScrollViewer>
  35. <ScrollViewer x:Name="show_information" Width="250" Height="400" Canvas.Top="190" Canvas.Left="1050" HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Auto" >
  36. <Canvas x:Name="showinfo" Width="235" Height="26" HorizontalAlignment="Left" VerticalAlignment="Top" Background="#FF18253C"/>
  37. </ScrollViewer>
  38. </Canvas>
  39. </Grid>
  40. </UserControl>