我学习了C#,并将一些来自VB.NET的代码从DeveloperFusion转换为C#,但C#不接受它。这是代码......
namespace MP3Strip
{
public class listViewDoubleBuffered : ListView
{
public listViewDoubleBuffered()
{
this.DoubleBuffered = true;
}
}
}
:ListView和this.DoubleBuffered在它们下面都有红线。我该如何解决这个问题?
答案 0 :(得分:1)
在文件顶部添加System.Windows.Controls
命名空间。
using System.Windows.Controls
namespace MP3Strip
{
public class listViewDoubleBuffered : ListView
{
public listViewDoubleBuffered()
{
this.DoubleBuffered = true;
}
}
}