0

我创建了一个自定义 WPF 控件,它显示了Weight一个 int 属性的值。当用户单击自定义控件或控件获得焦点时,用户应该能够编辑 Weight 属性的值。

为此,我尝试了以下方法:

  • 如果控件处于“非活动状态”,Weight 属性将显示在 TextBlock 中。
  • 如果控件获得焦点,Weight 属性将显示在 TextBox 中。

    <ResourceDictionary
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:WpfCustomControlLibrary1">
    
    <Style TargetType="{x:Type local:CustomControl1}">
        <Style.Resources>
            <ControlTemplate x:Key="Control_Focused" >
                <Border Background="Green"
                            BorderBrush="Black"
                             CornerRadius="50" Width="40" Height="40">
                    <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
                       <TextBox Width="35"
                                    Text="{Binding Mode=TwoWay,Path=Model.Weight,UpdateSourceTrigger=PropertyChanged,RelativeSource={RelativeSource Mode=FindAncestor,AncestorType={x:Type local:CustomControl1}}
                                    ,Converter={x:Static local:CustomControl1.IntToStringConverter}}" />
    
                    </StackPanel>
                </Border>
            </ControlTemplate>
    
            <ControlTemplate x:Key="Control">
                <Border Background="Green"
                            BorderBrush="Black"
                           CornerRadius="50" Width="40" Height="40">
                    <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
                        <TextBlock x:Name="PART_TextBlockWeighted" Text="{Binding Mode=TwoWay,Path=Model.Weight,UpdateSourceTrigger=PropertyChanged,RelativeSource={RelativeSource Mode=FindAncestor,AncestorType={x:Type local:CustomControl1}}}" 
                                   HorizontalAlignment="Center" VerticalAlignment="Center" />
                    </StackPanel>
                </Border>
            </ControlTemplate>
    
    
        </Style.Resources>
        <Style.Triggers>
            <Trigger Property="IsFocused" Value="True">
                <Setter Property="Template" Value="{StaticResource Control_Focused}" ></Setter>
            </Trigger>
            <Trigger Property="IsFocused" Value="False">
                <Setter Property="Template" Value="{StaticResource Control}" ></Setter>
            </Trigger>
        </Style.Triggers>
    
    </Style>
    

这种自定义控件样式的问题在于,当用户点击进入 TextBox 时,触发器会将控件模板更改为 TextBlock。我怎样才能解决这个问题?

4

1 回答 1

0

尝试改用该IsKeyboardFocusWithin属性。我相信这会做你需要的。

<Style.Triggers>
    <Trigger Property="IsKeyboardFocusWithin" Value="True">
        <Setter Property="Template" Value="{StaticResource Control_Focused}" ></Setter>
    </Trigger>
    <Trigger Property="IsKeyboardFocusWithin" Value="False">
        <Setter Property="Template" Value="{StaticResource Control}" ></Setter>
    </Trigger>
</Style.Triggers>
于 2013-07-01T21:32:53.927 回答