<Window.Resources>
<!-- Стиль для большого текстового поля -->
<Style x:Key="LargeTextBoxStyle" TargetType="TextBox">
<Setter Property="FontSize" Value="22"/>
<Setter Property="FontFamily" Value="Consolas"/>
<Setter Property="VerticalScrollBarVisibility" Value="Auto"/>
<Setter Property="HorizontalScrollBarVisibility" Value="Auto"/>
<Setter Property="TextWrapping" Value="Wrap"/>
<Setter Property="AcceptsReturn" Value="True"/>
<Setter Property="BorderBrush" Value="#FF4CAF50"/>
<Setter Property="BorderThickness" Value="3"/>
<Setter Property="Margin" Value="8"/>
<Setter Property="Padding" Value="8"/>
<Setter Property="Background" Value="#FFF9F9F9"/>
<Setter Property="Foreground" Value="#FF1E1E1E"/>
<Setter Property="MinHeight" Value="200"/>
</Style>