roundtextboxユーザーコントロールを作成し、すべてのページで使用しました。Tombstoneのデバッグ中に、丸いテキストボックスの代わりに1行しか表示されません。テキストボックス/ページを含むテキストボックス/グリッドの状態を保存しようとしましたが、それでもラウンドテキストボックスが折りたたまれて1行になります。これがroundtextboxの私のコードです
<Viewbox Width="420" >
<Border CornerRadius="10" BorderThickness="1" BorderBrush="Black" >
<TextBox Name="textbox" MaxLength="255" Margin="-8" Width="420" FontFamily="../fonts/DroidSans.ttf#Droid Sans" AcceptsReturn="True" TextWrapping="Wrap" IsReadOnly="False" Background="White" BorderBrush="White" >
</TextBox>
</Border>
</Viewbox>
よろしく、カナヤ