更改WPF中失去焦点事件的列表框模板

我想用TextBlocks作为项目列出一个列表框。 当用户点击/选择一个项目时,它会变成一个TextBox进行编辑。 只要控件失去焦点,该项目就会回到TextBlock。

以下XAML几乎可以工作,TextBlock在选中时会变成一个TextBox。 如果我在列表中选择另一个项目,它也会回到TextBlock。 问题是,如果我移出列表框(在本例中为添加新文本框),列表项保留为文本框。

这个问题(WPF ListViewItem失去了焦点事件 - 如何得到事件?)看起来很有前途,但我无法让它工作。 我尝试过使用IsFocused属性,但后来我无法编辑文本框,因为当我进入文本框时,listboxitem将失去焦点,因此在我有机会编辑文本之前回到TextBlock。

如果列表框/项目失去焦点,如何让TextBox返回到TextBlock?

(任何其他实现目标的实现也是受欢迎的)

<Window x:Class="MyView.MainWindow1"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
        Title="MainWindow1" Height="300" Width="200">
    <Window.Resources>
        <DataTemplate x:Key="ItemTemplate">
            <TextBlock Text="{Binding Name}" />
        </DataTemplate>

        <DataTemplate x:Key="SelectedTemplate">
            <TextBox Text="{Binding Name, Mode=TwoWay}" />
        </DataTemplate>

        <Style TargetType="{x:Type ListBoxItem}" x:Key="ContainerStyle">
            <Setter Property="ContentTemplate" Value="{StaticResource ItemTemplate}" />
            <Style.Triggers>
                <Trigger Property="IsSelected" Value="True">
                    <Setter Property="ContentTemplate" Value="{StaticResource SelectedTemplate}" />
                </Trigger>
            </Style.Triggers>
        </Style>
    </Window.Resources>

    <StackPanel >
        <ListBox ItemsSource="{Binding Departments}" HorizontalContentAlignment="Stretch"
                 ItemContainerStyle="{StaticResource ContainerStyle}" />
        <Grid>
            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="*" />
                <ColumnDefinition Width="Auto" />
            </Grid.ColumnDefinitions>
            <TextBox  Text="{Binding NewDepartmentName, Mode=TwoWay}"  />
            <Button Grid.Column="1" Width="50" Content="Add" Command="{Binding Path=AddNewDepartmentCommand}" />
        </Grid>
    </StackPanel>
</Window>

这不能回答你的问题,但通过在未选择listboxitem时将文本框设置为文本块,提供了一种替代解决方案:

<Page.Resources>
    <ResourceDictionary>
        <Style x:Key="ListBoxSelectableTextBox" TargetType="{x:Type TextBox}">
            <Setter Property="IsHitTestVisible" Value="False" />
            <Style.Triggers>
                <DataTrigger Binding="{Binding IsSelected, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type ListBoxItem}, AncestorLevel=1}}" Value="True">
                    <Setter Property="IsHitTestVisible" Value="True" />
                </DataTrigger>
            </Style.Triggers>
        </Style>
    </ResourceDictionary>
</Page.Resources>
<Grid>
    <ListBox ItemsSource="{Binding Departments}" HorizontalContentAlignment="Stretch">
        <ListBox.ItemTemplate>
            <DataTemplate>
                <TextBox Margin="5" Style="{StaticResource ListBoxSelectableTextBox}" Text="{Binding Name}" BorderBrush="{x:Null}"/>
            </DataTemplate>
        </ListBox.ItemTemplate>
    </ListBox>
</Grid>

有很多方法可以做到这一点:

  • 以上回答
  • 创建基于TextBoxBase的TextBox样式,使其在禁用时通过将BorderThickness =“0”,Background =“transparent”设置为TextBlock,
  • 对每个ListViewItem都使用TextBlock和TextBox,并使用上述答案技术隐藏并显示TextBlock / TextBox
  • 链接地址: http://www.djcxy.com/p/59893.html

    上一篇: Change listbox template on lost focus event in WPF

    下一篇: WPF Listbox commands