MainWindow.xamlの全コード
<Window x:Class="MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="254" Width="366">
<Window.Resources>
<Style x:Key="MyTextBoxStyle" TargetType="TextBox">
<Setter Property="Margin" Value="5" />
<Setter Property="Background" Value="Yellow" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="TextBox">
<Border x:Name="Border" CornerRadius="15"
Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}" >
<ScrollViewer x:Name="PART_ContentHost"/>
<!--<ScrollViewer x:Name="ContentElement" BorderThickness="0" IsTabStop="False"/>-->
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Window.Resources>
<Grid x:Name="LayoutRoot">
<StackPanel>
<TextBox x:Name="textBox1" Width="120"
BorderBrush="Red" BorderThickness="3"
Style="{StaticResource MyTextBoxStyle}" Text="Heiio,Folks!" HorizontalContentAlignment="Center" />
<TextBox x:Name="textBox2" Width="120"
BorderBrush="Green" BorderThickness="5"
Style="{StaticResource MyTextBoxStyle}" Text="こんにちは!" HorizontalContentAlignment="Center" />
</StackPanel>
</Grid>
</Window>