1

リストボックスにユーザーコントロールがあり、タブキーを使用してフォーカスするときに、カスタムコントロールではなくコントロールのテキストボックスにフォーカスを合わせたいと思います。どうすればいいですか?

コントロールに他のUI要素があるため、コードを簡略化しました。

ユーザー制御コード:

<Grid>
    <TextBox Name="txtFreeTextDescription" Style="{StaticResource TextBoxStyleLargeDynamic}" Text="{Binding Description, Mode=TwoWay, RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}" />
</Grid>

リストボックスコード:

<ListBox Name="lsbItems" DataContext="{Binding}" KeyboardNavigation.TabNavigation="Local">
      <ListBox.ItemTemplate>
         <DataTemplate>
             <local:SectionDynamicItem x:Name="ucSectionDynamicItem" Description="{Binding SectionItem.Description}"  />
          </DataTemplate>
       </ListBox.ItemTemplate>
</ListBox>
4

2 に答える 2

2

これは私のために働きます...

   <ListBox ItemsSource="{Binding EmployeeList}"
            KeyboardNavigation.TabNavigation="Continue">
        <ItemsControl.ItemContainerStyle>
            <Style TargetType="ListBoxItem">
                <Setter Property="Focusable" Value="False"/>
            </Style>
        </ItemsControl.ItemContainerStyle>
        <ItemsControl.ItemsPanel>
            <ItemsPanelTemplate>
                <StackPanel Orientation="Horizontal"/>
            </ItemsPanelTemplate>
        </ItemsControl.ItemsPanel>
        <ItemsControl.ItemTemplate>
            <DataTemplate>
                <Grid Margin="5" Focusable="False">
                    <TextBox Text="{Binding Name}"/>
                </Grid>
            </DataTemplate>
        </ItemsControl.ItemTemplate>
    </ListBox>
于 2012-10-23T09:40:00.407 に答える
-1

以下のリンクを確認してください。

http://social.msdn.microsoft.com/forums/en-US/wpf/thread/98d8423c-9719-4291-94e2-c5bf3d80cd46/

ありがとうRajnikant

于 2012-10-23T09:34:52.363 に答える