Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7829843
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T10:56:11+00:00 2026-06-02T10:56:11+00:00

I have a WPF DataGrid. When a user press the tab key i dont

  • 0

I have a WPF DataGrid.

When a user press the tab key i dont want to get focus on 1st column and also 3rd column so when i reach a row i should be in the second column and when i press tab key again and reach 3 column it sholud move to 4th column.

How can i do this in WPF DataGrid

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T10:56:17+00:00Added an answer on June 2, 2026 at 10:56 am

    The TabStopIndex value is what indicates which field should receive focus next when the Tab key is pressed. Additionally, you can disable a control’s TabStop entirely by setting it through the KeyboardNavigation.IsTabStop attached property.

    XAML:

    <DataGrid ItemsSource="{Binding}" AutoGenerateColumns="False">
            <DataGrid.Resources>
                <Style x:Key="NoTabStopStyle" TargetType="{x:Type DataGridCell}">
                    <Setter Property="KeyboardNavigation.IsTabStop" Value="False"/>
                </Style>
            </DataGrid.Resources>
            <DataGrid.Columns>
                <DataGridTextColumn Binding="{Binding Path=FirstColumn}" CellStyle="{StaticResource NoTabStopStyle}"/>
                <DataGridTextColumn Binding="{Binding Path=SecondColumn}"/>
                <DataGridTextColumn Binding="{Binding Path=ThirdColumn}" CellStyle="{StaticResource NoTabStopStyle}"/>
            </DataGrid.Columns>
        </DataGrid>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a WPF DataGrid with several Templated Columns containing Checkboxes. If I press
I have datagrid in wpf. When I do mouse-over on column header, There is
I have a user control that contains a WPF toolkit DataGrid . This control
I have a WPF/MVVM application with a DataGrid on a window. I want to
I have the need to show RowDetails in the WPF DataGrid when the user
I have a WPF DataGrid bound to some entities (Entity Framework 4+). User then
I have a WPF user control that contains a DataGrid. This DG contains several
I got some problems in Datagrid WPF I have a datagrid, and I want
I have a WPF DataGrid which has a DataTable as its ItemsSource . The
I have a WPF DataGrid who's data source is an ObservableCollection. It is set

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.