错误:System.Windows.Controls.UIElementCollection& # 39;不包含'
本文关键字:包含 错误 System Windows Controls UIElementCollection | 更新日期: 2023-09-27 18:04:48
我想从WPF画布中删除所有省略号。我使用了以下方法:
public void clearCircle()
{
var circles = cvsSurface.Children.OfType<Ellipse>().ToList();
foreach (var c in circles)
{
cvsSurface.Children.Remove(c);
}
}
但是,我得到一个错误。oftype:
'System.Windows.Controls.UIElementCollection' does not contain a definition for 'OfType' and no extension method 'OfType' accepting a first argument of type 'System.Windows.Controls.UIElementCollection' could be found.
我需要包括什么吗?我使用的是。net 4.5
我需要包含一些东西吗?....
是的,您需要包括System.Linq
命名空间,如这里所述。