(WPF Datagrid) 如何确定项目的列索引

发布于 2024-10-15 18:07:03 字数 73 浏览 4 评论 0原文

当我单击单元格时,如何返回 WPF Datagrid 中项目的列索引 我正在使用 Visual Studio 2010/VB.Net

How do i return the column index of an item within a WPF Datagrid, when I click on a cell
I'm using Visual Studio 2010/VB.Net

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

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

发布评论

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

评论(5

回忆躺在深渊里 2024-10-22 18:07:04

您尝试在“点击列索引”事件中使用它吗?

int columnIndex = dataGrid.CurrentColumn.DisplayIndex;

我在 MouseDoubleClick 事件或 PreviewKeyUp 中使用此代码并且工作完美。

You tried use this at the Event Click for Column Index?

int columnIndex = dataGrid.CurrentColumn.DisplayIndex;

I'm using this code in MouseDoubleClick Event or PreviewKeyUp and works perfectly.

千鲤 2024-10-22 18:07:04

每个人都谈论这个解决方案

Int32 columnIndex = dataGridScannedFiles.SelectedCells[0].Column.DisplayIndex;

,是的,它有效,但没有人告诉我们必须首先为每一列设置显示索引,也许对于专家来说这是很明显的,但对于新手来说,这是一个陌生的事情

有两种设置方法it:-

  1. 你可以在XAML部分设置它。

我不知道如何为自定义列设置它,

    <DataGridTemplateColumn.CellTemplate>
                                   <DataTemplate>                                                            
    <CheckBox x:Name="ChkItem" IsChecked="{Binding Path=Sno}"/>                                
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>

所以我更喜欢另一种方式

  1. 创建函数

    私有无效SetDisplayIndexforGridViewColumns()
    {
    Int32 ColumnCount = dt.Columns.Count;

     for (int i = 0; i < ColumnCount; i++) 
             {
                 dataGridScannedFiles.Columns[i].DisplayIndex = i;
    
             }
         }
    

dt 是我的数据表

,我正在为其分配显示索引

现在如果您使用

Int32 columnIndex = dataGridScannedFiles.SelectedCells[0].Column.DisplayIndex;

那么您一定会获得索引

Everybody tells about this solution

Int32 columnIndex = dataGridScannedFiles.SelectedCells[0].Column.DisplayIndex;

and yes it works but nobody tells that we have to set the Display index first fro every column, maybe it is quite obvious for Experts to get that, but for novices, it's an unfamiliar thing

There are two ways to set it:-

  1. You can set it in XAML part.

I don't know how to set it for custom columns like

    <DataGridTemplateColumn.CellTemplate>
                                   <DataTemplate>                                                            
    <CheckBox x:Name="ChkItem" IsChecked="{Binding Path=Sno}"/>                                
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>

so I preferred the other Way

  1. Created A function

    private void SetDisplayIndexforGridViewColumns()
    {
    Int32 ColumnCount = dt.Columns.Count;

             for (int i = 0; i < ColumnCount; i++) 
             {
                 dataGridScannedFiles.Columns[i].DisplayIndex = i;
    
             }
         }
    

dt is my Data Table

and I am assigning Display Indexes to it

Now if you use

Int32 columnIndex = dataGridScannedFiles.SelectedCells[0].Column.DisplayIndex;

then You will surely Get the Index

失而复得 2024-10-22 18:07:04

DataGridCells 没有 Click 事件,它们有一个 Selected 事件,但当您单击某个单元格时,通常会为一行中的每个单元格触发该事件。 GotFocus 可能是更好的选择。

例如

    <DataGrid ItemsSource="{Binding Data}">
        <DataGrid.CellStyle>
            <Style TargetType="{x:Type DataGridCell}">
                <EventSetter Event="GotFocus" Handler="CellClick"/>
            </Style>
        </DataGrid.CellStyle>
    </DataGrid>

    void CellClick(object sender, RoutedEventArgs e)
    {
        DataGridCell cell = sender as DataGridCell;
        MessageBox.Show(cell.Column.DisplayIndex.ToString());
    }

DataGridCell.Column.DisplayIndex 似乎返回了一个适当的索引,如果不知何故还不够,您可以使用DataGrid.Columns.IndexOf(DataGridCell.Column)

DataGridCells do not have a Click event, they have a Selected event but that is normally fired for each cell in a row when you click on a cell. GotFocus might be a better choice.

e.g.

    <DataGrid ItemsSource="{Binding Data}">
        <DataGrid.CellStyle>
            <Style TargetType="{x:Type DataGridCell}">
                <EventSetter Event="GotFocus" Handler="CellClick"/>
            </Style>
        </DataGrid.CellStyle>
    </DataGrid>

and:

    void CellClick(object sender, RoutedEventArgs e)
    {
        DataGridCell cell = sender as DataGridCell;
        MessageBox.Show(cell.Column.DisplayIndex.ToString());
    }

DataGridCell.Column.DisplayIndex seems to return an appropriate index, if it somehow is not enough you can use DataGrid.Columns.IndexOf(DataGridCell.Column).

无语# 2024-10-22 18:07:04

从 DataGrid 中获取特定列名称的列索引(在 wpf 中使用 linq)

  int index = DataGrid.Columns.Single(c => c.Header.ToString() == "Department").DisplayIndex;

To Get the Column index of particular column name from DataGrid (in wpf using linq)

  int index = DataGrid.Columns.Single(c => c.Header.ToString() == "Department").DisplayIndex;
鱼忆七猫命九 2024-10-22 18:07:03

您可以直接使用下面的代码来获取选定单元格的列索引。

int index = datagrid.SelectedCells[0].Column.DisplayIndex;

You can use below code directly to get selected cells column index.

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