| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <UserControl x:Class="RecipeModule.Dialogs.Views.JobRecipeEdit"
- 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:RecipeModule.Dialogs.Views"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800">
- <UserControl.Resources>
- <ResourceDictionary >
- <ResourceDictionary.MergedDictionaries>
- <ResourceDictionary Source="/UICommon;component/Resources.xaml"/>
- </ResourceDictionary.MergedDictionaries>
- </ResourceDictionary>
- </UserControl.Resources>
- <Grid Margin="8">
- <Grid.RowDefinitions>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="16"/>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="32"/>
- <RowDefinition Height="36"/>
- </Grid.RowDefinitions>
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="auto"/>
- <ColumnDefinition Width="8"/>
- <ColumnDefinition Width="120"/>
- <ColumnDefinition Width="16"/>
- <ColumnDefinition Width="auto"/>
- <ColumnDefinition Width="8"/>
- <ColumnDefinition Width="240"/>
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="32"/>
- <RowDefinition Height="12"/>
- <RowDefinition Height="32"/>
- </Grid.RowDefinitions>
- <TextBlock VerticalAlignment="Center">Created By:</TextBlock>
- <Border Grid.Column="2" Background="{StaticResource BorderBackgroundColor}" CornerRadius="4">
- <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">AAA</TextBlock>
- </Border>
- <TextBlock Grid.Row="2" Grid.Column="0" VerticalAlignment="Center">Last Revise By:</TextBlock>
- <Border Grid.Row="2" Grid.Column="2" Background="{StaticResource BorderBackgroundColor}" CornerRadius="4">
- <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">AAA</TextBlock>
- </Border>
- <TextBlock Grid.Row="0" Grid.Column="4" VerticalAlignment="Center">Created Time:</TextBlock>
- <Border Grid.Row="0" Grid.Column="6" Background="{StaticResource BorderBackgroundColor}" CornerRadius="4">
- <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">2025/10/17 21:12:33</TextBlock>
- </Border>
- <TextBlock Grid.Row="2" Grid.Column="4" VerticalAlignment="Center">Last Revision Time:</TextBlock>
- <Border Grid.Row="2" Grid.Column="6" Background="{StaticResource BorderBackgroundColor}" CornerRadius="4">
- <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">2025/10/17 21:12:33</TextBlock>
- </Border>
- </Grid>
- <Grid Grid.Row="2">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="160"/>
- <ColumnDefinition Width="8"/>
- <ColumnDefinition />
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="32"/>
- <RowDefinition Height="16"/>
- <RowDefinition Height="32"/>
- <RowDefinition Height="12"/>
- <RowDefinition Height="32"/>
- <RowDefinition Height="12"/>
- <RowDefinition Height="32"/>
- </Grid.RowDefinitions>
- <TextBlock Grid.Row="0" VerticalAlignment="Center" HorizontalAlignment="Center">Description:</TextBlock>
- <TextBox Grid.Row="0" Grid.Column="2" Background="Transparent" BorderThickness="1" VerticalContentAlignment="Center">AAA</TextBox>
- <Button Grid.Row="2" Style="{StaticResource FunctionButton}" >Process Recipe Select:</Button>
- <Border Grid.Row="2" Grid.Column="2" Background="{StaticResource BorderBackgroundColor}" CornerRadius="4">
- <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">AAA</TextBlock>
- </Border>
- <Button Grid.Row="4" Grid.Column="0" Style="{StaticResource FunctionButton}">Layout Recipe Select:</Button>
- <Border Grid.Row="4" Grid.Column="2" Background="{StaticResource BorderBackgroundColor}" CornerRadius="4">
- <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">AAA</TextBlock>
- </Border>
- <Button Grid.Row="6" Grid.Column="0" Style="{StaticResource FunctionButton}">Cooling Time:</Button>
- <Border Grid.Row="6" Grid.Column="2" Background="{StaticResource BorderBackgroundColor}" CornerRadius="4">
- <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">AAA</TextBlock>
- </Border>
- </Grid>
- <Grid Grid.Row="4">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="120"/>
- <ColumnDefinition/>
- <ColumnDefinition Width="120"/>
- </Grid.ColumnDefinitions>
- <Button Style="{StaticResource FunctionButton}">Save</Button>
- <Button Grid.Column="2" Style="{StaticResource FunctionButton}">Close</Button>
- </Grid>
- </Grid>
- </UserControl>
|