Answers for "round corners of textbox wpf"

C#
0

round corners of textbox wpf

<TextBox Text="TextBox with CornerRadius">
  <TextBox.Resources>
    <Style TargetType="{x:Type Border}">
      <Setter Property="CornerRadius" Value="3"/>
    </Style>
  </TextBox.Resources>
</TextBox>
Posted by: Guest on October-15-2021

C# Answers by Framework

Browse Popular Code Answers by Language