Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 WPF 将数据网格中的特定行作为不可编辑的文件。所以请帮帮我
这是一种如何通过触发器和值转换器禁用它的方法。可能会对你有所帮助
IsReadOnly您可以通过将该列的属性设置为 true来使单元格不可编辑。此外,您可以通过将此属性设置为 true 来禁用整个数据网格不可编辑。但是 DatagridRow 没有此属性,您必须创建自己的Depenedency property属性并通过style of DataGridRow. 您可以参考此示例以禁用数据网格中的特定行 -禁用数据网格中的行
IsReadOnly
Depenedency property
style of DataGridRow