How to make WPF DataGridCell ReadOnly?

前端 未结 10 1812
你的背包
你的背包 2020-12-09 10:49

I understand you can make the whole DataGrid or a whole column readyonly (IsReadOnly = true). However, at cell level this property is ready only. But I do need this level of

10条回答
  •  抹茶落季
    2020-12-09 11:31

    After much searching and experimentation using IsTabStop = False and Focusable = False works best for me.

    
        
            
        
    
    

提交回复
热议问题