123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <UserControl x:Class="PDF_Master.Views.HomePanel.ChatGPTAI.ChatGPTAIRewritingContent"
- 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:PDF_Master.Views.HomePanel.ChatGPTAI"
- xmlns:converter="clr-namespace:PDF_Master.DataConvert"
- xmlns:prism ="http://prismlibrary.com/"
- prism:ViewModelLocator.AutoWireViewModel="True"
- Background="White" MinWidth="540" MinHeight="460"
- mc:Ignorable="d"
- d:DesignHeight="760" d:DesignWidth="1032"
- >
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="*" />
- <RowDefinition Height="*" />
- </Grid.RowDefinitions>
- <StackPanel Grid.Row="0">
- <Grid Width="968">
- <StackPanel HorizontalAlignment="Left">
- <TextBlock Text="AI Rewriting" FontFamily="Segoe UI"
- FontSize="20"
- FontWeight="Bold"
- Foreground="{StaticResource color.sys.text.neutral.lv1}" Height="28" HorizontalAlignment="Left"></TextBlock>
- <TextBlock
- HorizontalAlignment="Center"
- FontFamily="Segoe UI"
- FontSize="14"
- Foreground="#94989C"
- Text="Limited to 150 characters per session, 5 times per month"
- TextAlignment="Center"
- TextWrapping="Wrap"
- />
- </StackPanel>
- <Button HorizontalAlignment="Right" Width="104" Height="32" Content="Rewrite" VerticalAlignment="Bottom" Style="{StaticResource Btn.cta}"></Button>
- </Grid>
- <Grid Width="968" Height="260" Margin="0,12,0,0">
- <TextBox Name="textBoxEnterCharacters" Width="968" Height="260" >
- </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"/>
- </Grid>
- </StackPanel>
- <StackPanel Grid.Row="1">
- <Grid Width="968">
- <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"></Button>
- </Grid>
- <TextBox Width="968" Height="260" Margin="0,12,0,0">
- </TextBox>
- </StackPanel>
- </Grid>
- </UserControl>
|