NormalModeView.xaml 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <UserControl x:Class="FurnaceUI.Views.Recipes.NormalModeView"
  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:FurnaceUI.Views.Recipes"
  7. mc:Ignorable="d"
  8. d:DesignHeight="560" d:DesignWidth="1000" FontFamily="Segoe">
  9. <Grid>
  10. <DockPanel>
  11. <Canvas>
  12. <Button Content="Normal mode" Style="{StaticResource PageTitleButton}" Canvas.Left="10" Canvas.Top="10"/>
  13. <Grid Canvas.Left="230" Canvas.Top="80">
  14. <Grid.RowDefinitions>
  15. <RowDefinition Height="*"/>
  16. <RowDefinition Height="*"/>
  17. <RowDefinition Height="*"/>
  18. <RowDefinition Height="*"/>
  19. <RowDefinition Height="*"/>
  20. </Grid.RowDefinitions>
  21. <Grid.ColumnDefinitions>
  22. <ColumnDefinition Width="*"/>
  23. <ColumnDefinition Width="*"/>
  24. <ColumnDefinition Width="*"/>
  25. </Grid.ColumnDefinitions>
  26. <Border Grid.Row="0" Grid.Column="0" Width="150" Height="60" Margin="10">
  27. <Button Content="Load">
  28. </Button>
  29. </Border>
  30. <Border Grid.Row="0" Grid.Column="1" Width="150" Height="60" Margin="10">
  31. <Button Content="Process" ></Button>
  32. </Border>
  33. <Border Grid.Row="0" Grid.Column="2" Width="150" Height="60" Margin="10">
  34. <Button Content="Unload" ></Button>
  35. </Border>
  36. <Border Grid.Row="1" Grid.Column="0" Height="60" Grid.ColumnSpan="3" Margin="10">
  37. <Button Content="Load->Process->Stock" ></Button>
  38. </Border>
  39. <Border Grid.Row="2" Grid.Column="0" Height="60" Grid.ColumnSpan="3" Margin="10">
  40. <Button Content="Load->Process->Unload" ></Button>
  41. </Border>
  42. <Border Grid.Row="3" Grid.Column="0" Width="150" Height="60" Margin="10">
  43. <Button Content="M load" ></Button>
  44. </Border>
  45. <Border Grid.Row="3" Grid.Column="1" Width="150" Height="60" Margin="10">
  46. <Button Content="M unload" ></Button>
  47. </Border>
  48. <Border Grid.Row="4" Grid.Column="0" Width="150" Height="60" Margin="10">
  49. <Button Content="D Exchange" ></Button>
  50. </Border>
  51. <Border Grid.Row="4" Grid.Column="2" Width="150" Height="60" Margin="10">
  52. <Button Content="ED Exchange" ></Button>
  53. </Border>
  54. </Grid>
  55. </Canvas>
  56. </DockPanel>
  57. </Grid>
  58. </UserControl>