您好我的WPF应用程序中有 telerik GridView 。在该网格中,我有三列,如数字,最大和最小。现在我需要禁用 最小值和最大值单元格当我在所选行的数字列上给出一些值时。
我将两个变量(如 MaxCell 和 MinCell )声明为GridViewCellBase。如果查询(下面提到的获取MaxCell和MinCell)将返回空值,我无法将 IsEnabled 设为 False 。它不接受任何价值。它给出了空引用异常。 我怎么解决这个问题 ?可以任何请告诉我这个问题的解决方案吗?提前致谢。
foreach (GridViewCell cell in row.Cells)
{
if (cell.Column.Header.ToString() == "Number" && Convert.ToInt32 (cell.Value) > 0)
{
GridViewCellBase MaxCell = new GridViewCellBase();
GridViewCellBase MinCell=new GridViewCellBase();
MaxCell=(from c in row.Cells
where c.Column.Name == "Max"
select c).FirstOrDefault();
MinCell =(from c in row.Cells
where c.Column.Name == "Min"
select c).FirstOrDefault();
MaxCell.IsEnabled = false;// Here I am getting the null reference exception when MaxCell and MinCell having empty values
MinCell.IsEnabled = false;
break;
}
}
MaxCell 始终仅返回空值。所以我不能给出 IsEnabled 属性。现在我的疑问是,为什么MaxCell值总是变为空值或空值?单元格的列如“Max”和“Min”。那么它应该返回 Actual Cell 但是为什么它总是返回空值?
答案 0 :(得分:1)
而不是使用你所描述的方法。我会尝试修改特定列的单元格样式,并使用返回适当值的转换器在IsEnabled属性上创建绑定。
<Style x:Key="MinMaxCellStyle" TargetType="{x:Type GridView:GridViewCell}">
<Setter Property="IsEnabled" Value="{Binding Normal, Converter{StaticResources NormalToEnabledConverter}" />
</Style>
然后将此样式应用于特定列作为fallows:
<GridView:GridViewDataColumn CellStyle="{StaticResource MinMaxCellStyle}" />
如果您不喜欢这样,您可以随时使用触发器。