3

我想要我的 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>           
4

1 回答 1

0

在您的示例代码中, ControlTemplate 不包含导致缺少可编辑输入元素的 ContentElement。

使用以下链接检查文本框的真实样式,仅更改相关边框“CornerRadius”属性以获得圆形视觉效果

文本框样式

于 2013-02-04T08:18:43.703 回答