我获得了KPI列表的所有KPI项目,然后我想将每个KPI项目的值输出到ListBox。但是基于List的KPI项目(如Tasks或Calender)返回的值为null。 只有使用手动输入的信息创建的项才会返回非空值。 为什么会这样?谢谢! 这是代码:
foreach (SPListItem item in kpiList.Items)
{
myListBox.Items.Add(Convert.ToString(item["Value"]));
}