| <Window x:Class="WpfEditor.TranslationResultWindow" | |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
| Title="翻译结果" Height="300" Width="500"> | |
| <Grid> | |
| <TextBox x:Name="ResultTextBox" | |
| Margin="16" | |
| FontSize="16" | |
| TextWrapping="Wrap" | |
| VerticalScrollBarVisibility="Auto" | |
| HorizontalScrollBarVisibility="Auto" | |
| IsReadOnly="True" | |
| Background="#FAFAFA" | |
| BorderThickness="0" | |
| Foreground="#333"/> | |
| </Grid> | |
| </Window> | |