本文介绍了在WPF DataGrid列头获取列索引的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何让指数或 Column.DisplayIndex 列标题 WPF 的DataGrid

我知道列标题,想获得列索引

推荐答案

您可以使用的DisplayIndex (注意,如果列使出这将改变)

you could use DisplayIndex (be aware this will change if columns are resorted)

var index = dataGrid.Columns.Single(c => c.Header.ToString() == "HeaderName").DisplayIndex;



编辑:感谢来自@AnHX

edited: thanks for suggestion from @AnHX

这篇关于在WPF DataGrid列头获取列索引的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 19:08