我想要我的 Windows 商店应用程序(C++)的圆角边缘文本框。我已将控制模板应用于 XAML 文本框以使其成为圆角边缘。但在运行应用程序后,我得到了圆角边缘,但我无法编辑此文本框。我是 XAML 的新手。请帮助我找出此代码中缺少的内容以使其可编辑。
这是使其圆角边缘后的代码。
<TextBox HorizontalAlignment="Left" Margin="51,202,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Height="23" Width="246" Background="White" BorderBrush="#FF00AAA6" IsReadOnly="False">
<TextBox.Resources>
<ControlTemplate x:Key="TextBoxControlTemplate1" TargetType="TextBox">
<Grid>
<VisualStateManager.VisualStateGroups>
<VisualStateGroup x:Name="CommonStates">
<VisualState x:Name="PointerOver"/>
<VisualState x:Name="Focused"/>
<VisualState x:Name="Disabled"/>
</VisualStateGroup>
<VisualStateGroup x:Name="ButtonStates">
<VisualState x:Name="ButtonCollapsed"/>
</VisualStateGroup>
</VisualStateManager.VisualStateGroups>
<Border BorderThickness="1" Padding="2" CornerRadius="3" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}"/>
</Grid>
</ControlTemplate>
</TextBox.Resources>
<TextBox.Template>
<StaticResource ResourceKey="TextBoxControlTemplate1"/>
</TextBox.Template>
</TextBox>