3

我有一个 WPF 列表框,带有一个用于列表框 ItemTemplate 的自定义 DataTemplate(每个项目都有一组控件;即文本框和日期选择器)。我有一个附加到最后一个 DatePicker 的行为,它允许用户在事件处理程序中为 PreviewKeyDown 事件执行 ICommand。

这个想法是,用户将通过 ListBoxItem 中的控件进行 TAB,当他们到达最后一个控件时,再次按 TAB,一个新的 ListBoxItem 将添加到 ListBox。然后焦点将移至下一个 ListBoxItem 中的第一个控件。当 ListBox 中已有 2 个项目并且您在第一个项目中切换时,我的解决方案可以正常工作。如果 ListBox 中只有一项,并且您到达最后一个控件,则会添加新的 ListBoxItem(如预期的那样),但焦点会从 ListBox 移到下一个父控件。

这就像调用 Behavior 代码并调用 ICommand 一样,但 TAB 事件会继续进行,而无需等待添加新的 ListBoxItem。

有什么建议么?

我的行为(ZBehaviorBase 只是一个允许“更好”清理的类):

public class TabOffCommandBehavior : ZBehaviorBase<FrameworkElement>
{
    public ICommand TabCommand
    {
        get { return (ICommand)GetValue(CommandProperty); }
        set { SetValue(CommandProperty, value); }
    }

    public static readonly DependencyProperty CommandProperty =
        DependencyProperty.Register("TabCommand", typeof(ICommand), typeof(TabOffCommandBehavior));

    protected override void Initialize()
    {
        this.AssociatedObject.PreviewKeyDown += new KeyEventHandler(AssociatedObject_PreviewKeyDown);
    }

    protected override void Uninitialize()
    {
        if (this.AssociatedObject != null)
        {
            this.AssociatedObject.PreviewKeyDown -= new KeyEventHandler(AssociatedObject_PreviewKeyDown);
        }
    }

    void AssociatedObject_PreviewKeyDown(object sender, KeyEventArgs e)
    {
        // if you want to pass a command param to CanExecute, need to add another dependency property to bind to
        if (TabCommand != null && e.Key == Key.Tab && TabCommand.CanExecute(null))
        {
            TabCommand.Execute(null);
        }
    }

XAML:

<ListBox Grid.Row="1" KeyboardNavigation.TabNavigation="Continue" ItemsSource="{Binding Path=OrderLines, Mode=OneWay}" 
                 ItemTemplate="{DynamicResource LineTemplate}" SelectionMode="Extended">
    <ListBox.ItemContainerStyle>
        <Style TargetType="ListBoxItem">
            <Setter Property="Margin" Value="0,5,0,5"/>                        
            <Setter Property="BorderThickness" Value="1"/>
            <Setter Property="Template" Value="{DynamicResource ListBoxItemTemplate}"/>
            <Setter Property="IsEnabled" Value="{Binding Path=IsLocked, Converter={StaticResource NotBoolConverter}}"/>
            <Setter Property="IsSelected" Value="{Binding Path=IsSelected}"/>
        </Style>
    </ListBox.ItemContainerStyle>
</ListBox>

在“线模板”内:

<TextBox Grid.Column="9" Grid.Row="3" Text="{Binding Path=SellPriceOverride, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}" VerticalAlignment="Center" Margin="5,0" TabIndex="10">
    <!--IF ANOTHER INTERACTIVE CONTROL IS ADDED PAST THIS ONE ON THE LINE, THIS COMMENT AND THE BEHAVIOR MUST BE MOVED TO THAT CONTROL INSTEAD-->
    <e:Interaction.Behaviors>
         <ZViewModels:TabOffCommandBehavior TabCommand="{Binding Path=DataContext.AddNewOrderLine, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=ListBox}}"/>
    </e:Interaction.Behaviors>
</TextBox>

在命令的“Execute”方法中唯一要做的就是将一个对象添加到一个集合中,该集合是 ListBox 的 ItemsSource

4

3 回答 3

1

在您的 AddNewOrderLine 方法中,尝试将焦点设置在您添加的新项目上。然后为了防止焦点改变,修改如下代码:

void AssociatedObject_PreviewKeyDown(object sender, KeyEventArgs e)
{
    // if you want to pass a command param to CanExecute, need to add another dependency property to bind to
    if (TabCommand != null && e.Key == Key.Tab && TabCommand.CanExecute(null))
    {
        TabCommand.Execute(null);
        e.Handled = true;
    }
}
于 2012-06-27T13:33:38.980 回答
0

你有没有在你的 ListBox 上试过这个:

<ListBox FocusManager.IsFocusScope="True" ... >

或这个:

<ListBox KeyboardNavigation.DirectionalNavigation="Contained" ... >

或两者?

于 2012-07-03T06:58:01.927 回答
0

尝试

if (e.KeyCode == Keys.Tab)
于 2012-05-14T19:03:23.980 回答