什么会停止选项卡?

发布于 2024-11-08 18:22:50 字数 1054 浏览 0 评论 0原文

我有以下 xaml:

       <ListBox ItemsSource="{Binding Path=ItemProperties.GeneralProperties}" Grid.Row="1"
                 Margin="0" Style="{StaticResource ListBoxStyle1}">
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <Grid>
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition Width="180" />
                            <ColumnDefinition Width="320" />
                        </Grid.ColumnDefinitions>

                        <TextBlock Text="{Binding Name}" Grid.Column="0" />
                        <ContentPresenter Content="{Binding Converter={StaticResource PropertyInput}}" Grid.Column="1" />
                    </Grid>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>

其中 ContentPresenter 包含 TextBox、ComboBox 或 CheckBox。

要在控件之间切换,我需要按两次选项卡。为什么???

我已经尝试在没有 TextBlock 的情况下评论整个第一列,但没有成功。

I have the following xaml:

       <ListBox ItemsSource="{Binding Path=ItemProperties.GeneralProperties}" Grid.Row="1"
                 Margin="0" Style="{StaticResource ListBoxStyle1}">
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <Grid>
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition Width="180" />
                            <ColumnDefinition Width="320" />
                        </Grid.ColumnDefinitions>

                        <TextBlock Text="{Binding Name}" Grid.Column="0" />
                        <ContentPresenter Content="{Binding Converter={StaticResource PropertyInput}}" Grid.Column="1" />
                    </Grid>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>

where the ContentPresenter contains a TextBox, or a ComboBox, or a CheckBox.

To switch between the controls I need twice press the tab. Why???

I've already tried to comment the whole first column, without the TextBlock, unsuccessfully.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧伤还要旧人安 2024-11-15 18:22:50

这对我来说适用于 DataGrid(它具有类似的模板系统)。

<UserControl.Resources>
    <Style TargetType="{x:Type DataGridCell}">
        <Setter Property="KeyboardNavigation.IsTabStop" Value="False"/>                                          
    </Style>
</UserControl.Resources>

然后,数据网格中的任何 TabStop 都可以用作 TabStop,但没有其他内容。抱歉,我不确定 ListBox 的等效代码是什么 - 但您也许可以从中找出答案。

This worked for me for a DataGrid (which has a similar templating system).

<UserControl.Resources>
    <Style TargetType="{x:Type DataGridCell}">
        <Setter Property="KeyboardNavigation.IsTabStop" Value="False"/>                                          
    </Style>
</UserControl.Resources>

Then anything which is a TabStop within the datagrid would work as a tabstop, but nothing else. Sorry I'm not sure what the equivalent code is for ListBox - but you may be able to figure it out from this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文