JobRecipeEdit.xaml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <UserControl x:Class="RecipeModule.Dialogs.Views.JobRecipeEdit"
  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:RecipeModule.Dialogs.Views"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800">
  9. <UserControl.Resources>
  10. <ResourceDictionary >
  11. <ResourceDictionary.MergedDictionaries>
  12. <ResourceDictionary Source="/UICommon;component/Resources.xaml"/>
  13. </ResourceDictionary.MergedDictionaries>
  14. </ResourceDictionary>
  15. </UserControl.Resources>
  16. <Grid Margin="8">
  17. <Grid.RowDefinitions>
  18. <RowDefinition Height="auto"/>
  19. <RowDefinition Height="16"/>
  20. <RowDefinition Height="auto"/>
  21. <RowDefinition Height="32"/>
  22. <RowDefinition Height="36"/>
  23. </Grid.RowDefinitions>
  24. <Grid>
  25. <Grid.ColumnDefinitions>
  26. <ColumnDefinition Width="auto"/>
  27. <ColumnDefinition Width="8"/>
  28. <ColumnDefinition Width="120"/>
  29. <ColumnDefinition Width="16"/>
  30. <ColumnDefinition Width="auto"/>
  31. <ColumnDefinition Width="8"/>
  32. <ColumnDefinition Width="240"/>
  33. </Grid.ColumnDefinitions>
  34. <Grid.RowDefinitions>
  35. <RowDefinition Height="32"/>
  36. <RowDefinition Height="12"/>
  37. <RowDefinition Height="32"/>
  38. </Grid.RowDefinitions>
  39. <TextBlock VerticalAlignment="Center">Created By:</TextBlock>
  40. <Border Grid.Column="2" Background="{StaticResource BorderBackgroundColor}" CornerRadius="4">
  41. <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">AAA</TextBlock>
  42. </Border>
  43. <TextBlock Grid.Row="2" Grid.Column="0" VerticalAlignment="Center">Last Revise By:</TextBlock>
  44. <Border Grid.Row="2" Grid.Column="2" Background="{StaticResource BorderBackgroundColor}" CornerRadius="4">
  45. <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">AAA</TextBlock>
  46. </Border>
  47. <TextBlock Grid.Row="0" Grid.Column="4" VerticalAlignment="Center">Created Time:</TextBlock>
  48. <Border Grid.Row="0" Grid.Column="6" Background="{StaticResource BorderBackgroundColor}" CornerRadius="4">
  49. <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">2025/10/17 21:12:33</TextBlock>
  50. </Border>
  51. <TextBlock Grid.Row="2" Grid.Column="4" VerticalAlignment="Center">Last Revision Time:</TextBlock>
  52. <Border Grid.Row="2" Grid.Column="6" Background="{StaticResource BorderBackgroundColor}" CornerRadius="4">
  53. <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">2025/10/17 21:12:33</TextBlock>
  54. </Border>
  55. </Grid>
  56. <Grid Grid.Row="2">
  57. <Grid.ColumnDefinitions>
  58. <ColumnDefinition Width="160"/>
  59. <ColumnDefinition Width="8"/>
  60. <ColumnDefinition />
  61. </Grid.ColumnDefinitions>
  62. <Grid.RowDefinitions>
  63. <RowDefinition Height="32"/>
  64. <RowDefinition Height="16"/>
  65. <RowDefinition Height="32"/>
  66. <RowDefinition Height="12"/>
  67. <RowDefinition Height="32"/>
  68. <RowDefinition Height="12"/>
  69. <RowDefinition Height="32"/>
  70. </Grid.RowDefinitions>
  71. <TextBlock Grid.Row="0" VerticalAlignment="Center" HorizontalAlignment="Center">Description:</TextBlock>
  72. <TextBox Grid.Row="0" Grid.Column="2" Background="Transparent" BorderThickness="1" VerticalContentAlignment="Center">AAA</TextBox>
  73. <Button Grid.Row="2" Style="{StaticResource FunctionButton}" >Process Recipe Select:</Button>
  74. <Border Grid.Row="2" Grid.Column="2" Background="{StaticResource BorderBackgroundColor}" CornerRadius="4">
  75. <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">AAA</TextBlock>
  76. </Border>
  77. <Button Grid.Row="4" Grid.Column="0" Style="{StaticResource FunctionButton}">Layout Recipe Select:</Button>
  78. <Border Grid.Row="4" Grid.Column="2" Background="{StaticResource BorderBackgroundColor}" CornerRadius="4">
  79. <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">AAA</TextBlock>
  80. </Border>
  81. <Button Grid.Row="6" Grid.Column="0" Style="{StaticResource FunctionButton}">Cooling Time:</Button>
  82. <Border Grid.Row="6" Grid.Column="2" Background="{StaticResource BorderBackgroundColor}" CornerRadius="4">
  83. <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">AAA</TextBlock>
  84. </Border>
  85. </Grid>
  86. <Grid Grid.Row="4">
  87. <Grid.ColumnDefinitions>
  88. <ColumnDefinition Width="120"/>
  89. <ColumnDefinition/>
  90. <ColumnDefinition Width="120"/>
  91. </Grid.ColumnDefinitions>
  92. <Button Style="{StaticResource FunctionButton}">Save</Button>
  93. <Button Grid.Column="2" Style="{StaticResource FunctionButton}">Close</Button>
  94. </Grid>
  95. </Grid>
  96. </UserControl>