|
@@ -11,13 +11,13 @@
|
|
|
mc:Ignorable="d"
|
|
|
d:DesignHeight="760" d:DesignWidth="1032"
|
|
|
>
|
|
|
- <Grid>
|
|
|
+ <Grid Margin="32,0,32,0">
|
|
|
<Grid.RowDefinitions>
|
|
|
<RowDefinition Height="*" />
|
|
|
<RowDefinition Height="*" />
|
|
|
</Grid.RowDefinitions>
|
|
|
<StackPanel Grid.Row="0">
|
|
|
- <Grid Width="968">
|
|
|
+ <Grid >
|
|
|
<StackPanel HorizontalAlignment="Left">
|
|
|
<TextBlock Text="AI Error Correction" FontFamily="Segoe UI"
|
|
|
FontSize="20"
|
|
@@ -35,21 +35,21 @@
|
|
|
</StackPanel>
|
|
|
<Button HorizontalAlignment="Right" Width="104" Height="32" Content="ErrorCorrection" VerticalAlignment="Bottom" Style="{StaticResource Btn.cta}" Command="{Binding ErrorCorrectionCommand}"></Button>
|
|
|
</Grid>
|
|
|
- <Grid Width="968" Height="260" Margin="0,12,0,0">
|
|
|
- <TextBox Name="textBoxEnterCharacters" Width="968" Height="260" Text="{Binding InputText}">
|
|
|
+ <Grid Height="260" Margin="0,12,0,0">
|
|
|
+ <TextBox Name="textBoxEnterCharacters" Height="260" Text="{Binding InputText}">
|
|
|
</TextBox>
|
|
|
- <TextBlock Text="{Binding ElementName=textBoxEnterCharacters,Path=Text.Length,StringFormat={}{0:/150}}" Panel.ZIndex="1" Height="22" FontSize="14" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="0,0,12,8"/>
|
|
|
+ <TextBlock Text="{Binding ElementName=textBoxEnterCharacters,Path=Text.Length,StringFormat={}{0}/150}" Panel.ZIndex="1" Height="22" FontSize="14" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="0,0,12,8"/>
|
|
|
</Grid>
|
|
|
</StackPanel>
|
|
|
<StackPanel Grid.Row="1">
|
|
|
- <Grid Width="968">
|
|
|
+ <Grid >
|
|
|
<TextBlock Text="Result" FontFamily="Segoe UI"
|
|
|
FontSize="20"
|
|
|
FontWeight="Bold"
|
|
|
Foreground="{StaticResource color.sys.text.neutral.lv1}" Height="28" HorizontalAlignment="Left"></TextBlock>
|
|
|
<Button HorizontalAlignment="Right" Width="104" Height="32" Content="Copy" Background="White" Command="{Binding CopyCommand}"></Button>
|
|
|
</Grid>
|
|
|
- <TextBox Width="968" Height="260" Margin="0,12,0,0" Text="{Binding ErrorCorrectionText}">
|
|
|
+ <TextBox Height="260" Margin="0,12,0,0" Text="{Binding ErrorCorrectionText}">
|
|
|
|
|
|
</TextBox>
|
|
|
</StackPanel>
|