本文介绍了如何获取Weather特定单元格是否为只读的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用名为IGrid的Wpf数据网格
我想得到一个天气特定的单元格是否为只读或非密钥事件
在vb普通网格中我使用下面的代码来获取这个
I am using Wpf datagrid called IGrid
I want to get a Weather particular cell is read only or not in keyup event
In vb ordinary grid i use code below to get this
If IGrid.CurrentRow.Cells(ColumnIndex).ReadOnly = True Then
End If
请在wpf datagrid中给我相当于
谢谢。
please give me equivalent for this in wpf datagrid
thanks.
推荐答案
if cell.IsReadOnly Then
'...
End If
这篇关于如何获取Weather特定单元格是否为只读的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!